Init Git
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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
|
||||
);
|
||||
Reference in New Issue
Block a user