ant-design-blazor/components/form/EventCallbackArgs/FormProviderFinishEventArgs.cs
笨木头 78abff551d feat(module: form): add form-context demo, support FormProvider (#362)
* feat(module: form): add form-context demo, support FormProvider

* refactor: remove debug code

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-07-16 08:56:15 +08:00

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; }
}
}