using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace AntDesign
{
public interface IModalTemplate
{
///
/// 点击确定按钮时调用,可以重写它来放入自己的逻辑
///
Task OkAsync(ModalClosingEventArgs args);
///
/// 点击确定按钮时调用,可以重写它来放入自己的逻辑
///
Task CancelAsync(ModalClosingEventArgs args);
}
}