mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
14 lines
298 B
C#
14 lines
298 B
C#
|
|
|||
|
using System.Collections.Generic;
|
|||
|
using AntDesign.Internal;
|
|||
|
using Microsoft.AspNetCore.Components.Forms;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class FormProviderFinishEventArgs
|
|||
|
{
|
|||
|
public Dictionary<string, IForm> Forms { get; set; }
|
|||
|
public IForm FinishForm { get; set; }
|
|||
|
}
|
|||
|
}
|