10 lines
286 B
C#
10 lines
286 B
C#
|
namespace DispenserCommon.Utils;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 弹窗工具类
|
|||
|
/// </summary>
|
|||
|
public interface ConfirmDialogHelper
|
|||
|
{
|
|||
|
Task<bool> ShowConfirm(string title, bool showCancel = true, bool showConfirm = true,
|
|||
|
string cancelText = "取消", string confirmText = "确认");
|
|||
|
}
|