Files
Oleksandr Bezdieniezhnykh 0625cd4157 Initial commit
Made-with: Cursor
2026-03-25 05:21:08 +02:00

9 lines
172 B
C#

namespace Azaion.Flights.DTOs;
public class GeoPoint
{
public decimal? Lat { get; set; }
public decimal? Lon { get; set; }
public string? Mgrs { get; set; }
}