mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
22 lines
533 B
C#
22 lines
533 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public interface IModalTemplate
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 点击确定按钮时调用,可以重写它来放入自己的逻辑
|
|||
|
/// </summary>
|
|||
|
Task OkAsync(ModalClosingEventArgs args);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 点击确定按钮时调用,可以重写它来放入自己的逻辑
|
|||
|
/// </summary>
|
|||
|
Task CancelAsync(ModalClosingEventArgs args);
|
|||
|
|
|||
|
}
|
|||
|
}
|