Borja García Rodríguez 5fa317f5c4 net 5 webapps
2020-12-18 09:48:28 +01:00

9 lines
178 B
C#

namespace WebMVC.Services.ModelDTOs
{
public record LocationDTO
{
public double Longitude { get; init; }
public double Latitude { get; init; }
}
}