mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:26:39 +00:00
15 lines
428 B
C#
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; }
|
|
}
|
|
|