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"); } }