13 lines
240 B
C#
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");
|
|
}
|
|
}
|