Upload plików - początek
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Navigation_Between.Interface;
|
||||
// Tworzenie interfejsu serwisu Alert nie jest wymagane, ale jest dobrą praktyką w kontekście architektury aplikacji
|
||||
public interface IAlertService {
|
||||
Task ShowAlert(string title, string message, string button);
|
||||
Task<string> ShowPrompt(string title, string message, string accept, string cancel, string placeholder);
|
||||
Task<string> ShowAction(string title, string cancel, string destruction, string[] options);
|
||||
}
|
||||
Reference in New Issue
Block a user