mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
10 lines
232 B
C#
10 lines
232 B
C#
namespace AntDesign
|
|
{
|
|
public class TimePickerLocale
|
|
{
|
|
public string Placeholder { get; set; } = "Select time";
|
|
|
|
public string[] RangePlaceholder { get; set; } = new[] { "Start time", "End time" };
|
|
}
|
|
}
|