namespace ZeroFramework.IdentityServer.API.Tenants { public class TenantInfo(Guid? tenantId, string? name = null) { /// /// Null indicates the host. /// Not null value for a tenant. /// public Guid? TenantId { get; } = tenantId; /// /// Name of the tenant if is not null. /// public string? Name { get; } = name; } }