Files
Thanakarn Klangkasame 92e614674c Init Git
2025-09-30 11:01:02 +07:00

12 lines
299 B
C#

namespace AMREZ.EOP.Contracts.DTOs.Tenancy.ListDomains;
public sealed record DomainDto(
string Domain,
string? TenantKey,
bool IsPlatformBaseDomain,
bool IsActive,
DateTimeOffset UpdatedAtUtc);
public sealed record ListDomainsResponse(
IReadOnlyList<DomainDto> Items
);