23 lines
825 B
C#
23 lines
825 B
C#
namespace BackOffice.BFF.Application.CommissionCQ.Queries.GetWorkerExecutionLogs;
|
|
|
|
public class GetWorkerExecutionLogsResponseDto
|
|
{
|
|
public MetaData MetaData { get; set; } = new();
|
|
public List<WorkerExecutionLogModel> Models { get; set; } = new();
|
|
}
|
|
|
|
public class WorkerExecutionLogModel
|
|
{
|
|
public string ExecutionId { get; set; } = string.Empty;
|
|
public long WeekDefinitionId { get; set; }
|
|
public string WeekDisplayName { get; set; } = string.Empty;
|
|
public string Step { get; set; } = string.Empty;
|
|
public bool Success { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
public DateTime StartedAt { get; set; }
|
|
public DateTime CompletedAt { get; set; }
|
|
public long DurationMs { get; set; }
|
|
public int RecordsProcessed { get; set; }
|
|
public string? Details { get; set; }
|
|
}
|