Class SimpleTenant
Implements a simple basic Tenant information model to get off the ground.
Inheritance
System.Object
SimpleTenant
Implements
Namespace: Talegen.AspNetCore.Multitenant
Assembly: Talegen.AspNetCore.Multitenant.dll
Syntax
public class SimpleTenant : object, ITenant
Properties
| Improve this Doc View SourceId
Gets or sets the durable tenant identifier that will never change.
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid | The identifier. |
Identifier
Gets or sets the tenant identifier name.
Declaration
public string Identifier { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Properties
Gets or sets any additional tenant properties.
Declaration
public Dictionary<string, string> Properties { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<System.String, System.String> | The properties. |