mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 11:46:31 +00:00
0625cd4157
Made-with: Cursor
9 lines
172 B
C#
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; }
|
|
}
|