15 lines
359 B
C#
15 lines
359 B
C#
using AMREZ.EOP.Domain.Shared.Tenancy;
|
|
|
|
namespace AMREZ.EOP.Contracts.DTOs.Tenancy.ListTenants;
|
|
|
|
public sealed record TenantDto(
|
|
string TenantKey,
|
|
string? Schema,
|
|
string? ConnectionString,
|
|
TenantMode Mode,
|
|
bool IsActive,
|
|
DateTimeOffset UpdatedAtUtc);
|
|
|
|
public sealed record ListTenantsResponse(
|
|
IReadOnlyList<TenantDto> Items
|
|
); |