mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 08:46:39 +00:00
19 lines
600 B
C#
19 lines
600 B
C#
namespace SatelliteProvider.DataAccess.Models;
|
|
|
|
public class RegionEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
public double Latitude { get; set; }
|
|
public double Longitude { get; set; }
|
|
public double SizeMeters { get; set; }
|
|
public int ZoomLevel { get; set; }
|
|
public string Status { get; set; } = string.Empty;
|
|
public string? CsvFilePath { get; set; }
|
|
public string? SummaryFilePath { get; set; }
|
|
public int TilesDownloaded { get; set; }
|
|
public int TilesReused { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
|