mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
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);
|
|||
|
}
|
|||
|
}
|