dotbot/Core/UserLocation.cs

13 lines
313 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 float Lat { get; set; }
public float Lng { get; set; }
public string City { get; set; }
public int CityId { get; set; }
public string TimeZone { get; set; }
}
}