Files
satellite-provider/SatelliteProvider.Common/DTO/RegionStatus.cs
T
2025-10-28 15:56:16 +01:00

15 lines
428 B
C#

namespace SatelliteProvider.Common.DTO;
public class RegionStatus
{
public Guid Id { 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; }
}