11 lines
305 B
C#
11 lines
305 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.District;
|
|
|
|
public sealed record DistrictListRequest(
|
|
int Page = 1,
|
|
int PageSize = 20,
|
|
string? Search = null,
|
|
Guid? ProvinceId = default,
|
|
string? ProvinceCode = default,
|
|
bool IncludeInactive = false,
|
|
bool IncludeOverrides = true
|
|
); |