14 lines
258 B
C#
14 lines
258 B
C#
namespace ZeroFramework.IdentityServer.API.Tenants
|
|
{
|
|
public interface ICurrentTenant
|
|
{
|
|
bool IsAvailable { get; }
|
|
|
|
Guid? Id { get; }
|
|
|
|
string? Name { get; }
|
|
|
|
IDisposable Change(Guid? id, string? name = null);
|
|
}
|
|
}
|