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

17 lines
405 B
C#

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