forked from ddrilling/AsbCloudServer
26 lines
601 B
C#
26 lines
601 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Точка на карте с названием
|
|||
|
/// </summary>
|
|||
|
public class MapPointBaseDto : IMapPoint, IId
|
|||
|
{
|
|||
|
/// <inheritdoc/>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Название
|
|||
|
/// </summary>
|
|||
|
public string Caption { get; set; }
|
|||
|
|
|||
|
/// <inheritdoc/>
|
|||
|
public double? Latitude { get; set; }
|
|||
|
|
|||
|
/// <inheritdoc/>
|
|||
|
public double? Longitude { get; set; }
|
|||
|
|
|||
|
/// <inheritdoc/>
|
|||
|
public SimpleTimezoneDto Timezone { get; set; }
|
|||
|
}
|
|||
|
}
|