2026-05-18 16:46:42 +10:00
|
|
|
|
using PARR.Domain.DTOs.Workload;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.API.Contracts.V1.Responses.Statistics
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Инфо о формирование КЭШ для отчета Workload
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public record StatWorkloadCacheInfoResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public WorkloadCacheInfo.StatusEnum Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTimeOffset? Date { get; init; }
|
2026-05-20 14:26:25 +10:00
|
|
|
|
|
|
|
|
|
|
public int? ProgressPercent { get; init; }
|
2026-05-18 16:46:42 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|