9 lines
252 B
C#
9 lines
252 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.ComplianceStatus;
|
|
|
|
public sealed record ComplianceStatusListRequest(
|
|
int Page = 1,
|
|
int PageSize = 20,
|
|
string? Search = null,
|
|
bool IncludeInactive = false,
|
|
bool IncludeOverrides = true
|
|
); |