dotbot/Core/UserLocation.cs

13 lines
315 B
C#
Raw Normal View History

2017-12-06 05:28:58 +00:00
namespace dotbot.Core
{
public class UserLocation
{
public ulong Id { get; set; }
public double Lat { get; set; }
public double Lng { get; set; }
2017-12-06 05:28:58 +00:00
public string City { get; set; }
public int CityId { get; set; }
public string TimeZone { get; set; }
}
}