7 lines
193 B
C#
7 lines
193 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Tenancy.ListTenants;
|
|
|
|
public sealed class ListTenantsRequest
|
|
{
|
|
public string TenantKey { get; set; } = default!;
|
|
public string? Tenant { get; set; }
|
|
} |