mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 21:56:39 +00:00
20 lines
642 B
C#
20 lines
642 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 bool StitchTiles { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
|