Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Last active April 16, 2018 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/0f4ec31ac237f0365ee224eb7b746559 to your computer and use it in GitHub Desktop.
Save icebeam7/0f4ec31ac237f0365ee224eb7b746559 to your computer and use it in GitHub Desktop.
Hora Local: TimeZoneInfo.cs
namespace HoraLocal.Modelos
{
public class TimeZoneInfo
{
public long dstOffset { get; set; }
public long rawOffset { get; set; }
public string status { get; set; }
public string timeZoneId { get; set; }
public string timeZoneName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment