2023-02-07 16:20:36 +05:00
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Точка на карте с названием
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MapPointBaseDto : IMapPoint, IId
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Название
|
|
|
|
|
/// </summary>
|
2023-02-22 15:31:16 +05:00
|
|
|
|
public string Caption { get; set; } = null!;
|
2023-02-07 16:20:36 +05:00
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public double? Latitude { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public double? Longitude { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2023-02-22 15:03:15 +05:00
|
|
|
|
public SimpleTimezoneDto Timezone { get; set; } = null!;
|
2023-02-07 16:20:36 +05:00
|
|
|
|
}
|
|
|
|
|
}
|