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