13 lines
382 B
C#
13 lines
382 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.Subdistrict;
|
|
|
|
public sealed record SubdistrictListRequest(
|
|
int Page = 1,
|
|
int PageSize = 20,
|
|
string? Search = null,
|
|
Guid? DistrictId = default,
|
|
string? DistrictCode = default,
|
|
Guid? ProvinceId = default,
|
|
string? ProvinceCode = default,
|
|
bool IncludeInactive = false,
|
|
bool IncludeOverrides = true
|
|
); |