[Add] MasterData Services.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
);
|
||||
@@ -0,0 +1,17 @@
|
||||
namespace AMREZ.EOP.Contracts.DTOs.MasterData.District;
|
||||
|
||||
public sealed record DistrictResponse(
|
||||
Guid Id,
|
||||
string Scope,
|
||||
string Code,
|
||||
string Name,
|
||||
Dictionary<string, string>? NameI18n,
|
||||
Guid? OverridesGlobalId,
|
||||
bool IsActive,
|
||||
bool IsSystem,
|
||||
Dictionary<string, object>? Meta,
|
||||
string DopaCode,
|
||||
Guid ProvinceId,
|
||||
string ProvinceName,
|
||||
string ProvinceDopaCode
|
||||
);
|
||||
Reference in New Issue
Block a user