Class UserGroup2AppDto
Represents a data transfer object (DTO) that defines the association between a user group and an application in the system.
Inheritance
object
Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
Assembly: Umbraco.Infrastructure.dll
Syntax
public class UserGroup2AppDto
Constructors
View SourceUserGroup2AppDto()
Declaration
public UserGroup2AppDto()
Fields
View SourceTableName
Declaration
public const string TableName = "umbracoUserGroup2App"
Field Value
| Type | Description |
|---|---|
| string |
UserGroupIdColumnName
Declaration
public const string UserGroupIdColumnName = "userGroupId"
Field Value
| Type | Description |
|---|---|
| string |
Properties
View SourceAppAlias
Gets or sets the alias of the application associated with the user group.
Declaration
[Length(50)]
public string AppAlias { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
UserGroupId
Gets or sets the identifier of the user group.
Declaration
[PrimaryKeyColumn(AutoIncrement = false, Name = "PK_userGroup2App", OnColumns = "userGroupId, app")]
[ForeignKey(typeof(UserGroupDto))]
public int UserGroupId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |