AutoCatUwp/AutoCatCore/MVVM/IDialogService.cs
2021-01-24 18:21:04 +03:00

13 lines
240 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace AutoCatCore.MVVM
{
public interface IDialogService
{
Task ShowErrorDialogAsync(string message, string title = "Error");
}
}