Interface ITenant
This interface represents the minimum implementation of a tenant information model.
Namespace: Talegen.AspNetCore.Multitenant
Assembly: Talegen.AspNetCore.Multitenant.dll
Syntax
public interface ITenant
Properties
| Improve this Doc View SourceId
Gets or sets the durable tenant identifier that will never change.
Declaration
Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid | The identifier. |
Identifier
Gets or sets the tenant identifier name.
Declaration
string Identifier { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Properties
Gets or sets the properties.
Declaration
Dictionary<string, string> Properties { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<System.String, System.String> | The properties. |