Upload plików - początek

This commit is contained in:
Krzysztof KrzysiekSiemv Smaga
2025-03-10 19:49:55 +01:00
commit 582c0f69ab
3536 changed files with 371692 additions and 0 deletions
+7
View File
@@ -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);
}