Files
TaskHybrid/salesbook.Shared/Core/Dto/PositionDTO.cs
2025-10-02 23:48:14 +02:00

18 lines
395 B
C#

using System.Text.Json.Serialization;
namespace salesbook.Shared.Core.Dto;
public class PositionDTO
{
[JsonPropertyName("id")]
public long? Id { get; set; }
[JsonPropertyName("descrizione")]
public string? Description { get; set; }
[JsonPropertyName("lat")]
public double? Lat { get; set; }
[JsonPropertyName("lng")]
public double? Lng { get; set; }
}