18 lines
395 B
C#
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; }
|
|
} |