ant-design-blazor/components/form/Internal/IFormProvider.cs

13 lines
240 B
C#
Raw Normal View History

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