mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
059491d749
* Replaced IdGeneratorHelper with DI service that can be replaced by user * removed license comments and unnecessary usings * check Id null before assigning autogenerated id * fix: unit test Co-authored-by: ElderJames <shunjiey@hotmail.com>
8 lines
138 B
C#
8 lines
138 B
C#
namespace AntDesign
|
|
{
|
|
public interface IComponentIdGenerator
|
|
{
|
|
string Generate(AntDomComponentBase component);
|
|
}
|
|
}
|