ant-design-blazor/components/form/Internal/IFormProvider.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

13 lines
240 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign.Internal
{
public interface IFormProvider
{
internal void AddForm(IForm form);
internal void RemoveForm(IForm form);
}
}