ant-design-blazor/components/time-picker/TimePickerLocale.cs

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