mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
78abff551d
* feat(module: form): add form-context demo, support FormProvider * refactor: remove debug code Co-authored-by: James Yeung <shunjiey@hotmail.com>
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; }
|
|
}
|
|
}
|