mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 05:57:39 +08:00
11 lines
226 B
C#
11 lines
226 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class SimpleSelect : Select<string, string> { }
|
|
|
|
public class SimpleSelectOption : SelectOption<string, string> { }
|
|
}
|