123123
This commit is contained in:
@@ -2,8 +2,17 @@
|
||||
{
|
||||
public class TimeZoneItem
|
||||
{
|
||||
public string Text { get; set; } = string.Empty;
|
||||
public string Value { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public TimeZoneItem()
|
||||
{
|
||||
Text = string.Empty;
|
||||
Value = string.Empty;
|
||||
}
|
||||
|
||||
public string Text { get; set; }
|
||||
public string Value { get; set; }
|
||||
|
||||
public static List<TimeZoneItem> GetAll()
|
||||
{
|
||||
@@ -17,4 +26,4 @@
|
||||
return list.OrderBy(o => o.Text).ToList();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user