14 lines
504 B
C#
14 lines
504 B
C#
using CMSMicroservice.Application.Common.Models;
|
|
|
|
namespace CMSMicroservice.Application.CommissionCQ.Queries.GetWorkerExecutionLogs;
|
|
|
|
public record GetWorkerExecutionLogsQuery : IRequest<GetWorkerExecutionLogsResponseDto>
|
|
{
|
|
public string? WeekNumber { get; init; }
|
|
public string? ExecutionId { get; init; }
|
|
public bool? SuccessOnly { get; init; }
|
|
public bool? FailedOnly { get; init; }
|
|
public string? SortBy { get; init; }
|
|
public PaginationState? PaginationState { get; init; }
|
|
}
|