Files
Thanakarn Klangkasame 1e636aa3d5 [Add] MasterData Services.
2025-11-26 10:29:56 +07:00

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
);