mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:06:39 +00:00
21 lines
705 B
C#
21 lines
705 B
C#
namespace SatelliteProvider.DataAccess.Models;
|
|
|
|
public class RouteEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
public double RegionSizeMeters { get; set; }
|
|
public int ZoomLevel { get; set; }
|
|
public double TotalDistanceMeters { get; set; }
|
|
public int TotalPoints { get; set; }
|
|
public bool RequestMaps { get; set; }
|
|
public bool MapsReady { get; set; }
|
|
public string? CsvFilePath { get; set; }
|
|
public string? SummaryFilePath { get; set; }
|
|
public string? StitchedImagePath { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
|