Init Git
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace AMREZ.EOP.Contracts.DTOs.Tenancy.ListTenants;
|
||||
|
||||
public sealed class ListTenantsRequest
|
||||
{
|
||||
public string TenantKey { get; set; } = default!;
|
||||
public string? Tenant { get; set; }
|
||||
}
|
||||
@@ -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