This commit is contained in:
2022-06-09 17:49:34 +02:00
parent 9d48caaa58
commit 0b3fe30fec
24 changed files with 254 additions and 34 deletions

View File

@@ -4,4 +4,5 @@ public interface IUserCommunicationService
{
Task<bool> ReadInputs(params IInputElement[] fields);
void ShowToastMessage(string text);
Task<MessageBoxResult> ShowMessageBox(string text);
}

View File

@@ -0,0 +1,7 @@
namespace FileTime.Core.Interactions;
public enum MessageBoxResult
{
Ok,
Cancel
}