10 lines
217 B
C#
10 lines
217 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Wino.Domain.Interfaces
|
|
{
|
|
public interface IConfirmationDialog
|
|
{
|
|
Task<bool> ShowDialogAsync(string title, string message, string approveButtonTitle);
|
|
}
|
|
}
|