21 lines
508 B
C#
21 lines
508 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.Subdistrict;
|
|
|
|
public sealed record SubdistrictResponse(
|
|
Guid Id,
|
|
string Scope,
|
|
string Code,
|
|
string Name,
|
|
Dictionary<string, string>? NameI18n,
|
|
Guid? OverridesGlobalId,
|
|
bool IsActive,
|
|
bool IsSystem,
|
|
Dictionary<string, object>? Meta,
|
|
string DopaCode,
|
|
string? Postcode,
|
|
Guid DistrictId,
|
|
string DistrictName,
|
|
string DistrictDopaCode,
|
|
Guid ProvinceId,
|
|
string ProvinceName,
|
|
string ProvinceDopaCode
|
|
); |