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