namespace DispenserCommon.Utils; /// /// 弹窗工具类 /// public interface ConfirmDialogHelper { Task ShowConfirm(string title, bool showCancel = true, bool showConfirm = true, string cancelText = "取消", string confirmText = "确认"); }