9 lines
178 B
C#
9 lines
178 B
C#
namespace WebMVC.Services.ModelDTOs
|
|
{
|
|
public record LocationDTO
|
|
{
|
|
public double Longitude { get; init; }
|
|
public double Latitude { get; init; }
|
|
}
|
|
}
|