Class CreateModalModel.TenantInfoModel
Inheritance
CreateModalModel.TenantInfoModel
Assembly: Volo.Saas.Host.Web.dll
Syntax
public class CreateModalModel.TenantInfoModel : ExtensibleObject, IHasExtraProperties, IValidatableObject
Constructors
TenantInfoModel()
Declaration
Properties
ActivationEndDate
Declaration
public DateTime? ActivationEndDate { get; set; }
Property Value
ActivationState
Declaration
public TenantActivationState ActivationState { get; set; }
Property Value
AdminEmailAddress
Declaration
[Required]
[EmailAddress]
[StringLength(256)]
public string AdminEmailAddress { get; set; }
Property Value
AdminPassword
Declaration
[Required]
[DataType(DataType.Password)]
[DynamicStringLength(typeof(TenantConnectionStringConsts), "MaxPasswordLength", null)]
[DisableAuditing]
public string AdminPassword { get; set; }
Property Value
ConnectionStrings
Declaration
public CreateModalModel.TenantConnectionStringsModel ConnectionStrings { get; set; }
Property Value
EditionId
Declaration
[SelectItems("EditionsComboboxItems")]
public Guid? EditionId { get; set; }
Property Value
Name
Declaration
[Required]
[DynamicStringLength(typeof(TenantConsts), "MaxNameLength", null)]
public string Name { get; set; }
Property Value
UseSharedDatabase
Declaration
public bool UseSharedDatabase { get; set; }
Property Value
UseSpecificDatabase
Declaration
public bool UseSpecificDatabase { get; set; }
Property Value
Implements
Extension Methods