Files
parr_api/PARR.API/Contracts/V1/Responses/Statistics/StatWorkloadCacheInfoResponse.cs

15 lines
389 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}