forked from ddrilling/AsbCloudServer
17 lines
561 B
C#
17 lines
561 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class TimeZoneInfo
|
|
{
|
|
public string Sunrise { get; set; }
|
|
public double Lng { get; set; }
|
|
public double Lat { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public double GmtOffset { get; set; }
|
|
public double RawOffset { get; set; }
|
|
public string Sunset { get; set; }
|
|
public string TimezoneId { get; set; }
|
|
public double DstOffset { get; set; }
|
|
public string CountryName { get; set; }
|
|
public string Time { get; set; }
|
|
}
|
|
} |