Class UserGroup2LanguageDto
Represents a data transfer object (DTO) that defines the association between a user group and a language in the system.
Inheritance
object
Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
Assembly: Umbraco.Infrastructure.dll
Syntax
public class UserGroup2LanguageDto
Constructors
View SourceUserGroup2LanguageDto()
Declaration
public UserGroup2LanguageDto()
Fields
View SourceTableName
Declaration
public const string TableName = "umbracoUserGroup2Language"
Field Value
| Type | Description |
|---|---|
| string |
Properties
View SourceLanguageId
Gets or sets the language identifier.
Declaration
[ForeignKey(typeof(LanguageDto), OnDelete = Rule.Cascade)]
public int LanguageId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
UserGroupId
Gets or sets the unique identifier of the user group associated with this mapping.
Declaration
[PrimaryKeyColumn(AutoIncrement = false, Name = "PK_userGroup2language", OnColumns = "userGroupId, languageId")]
[ForeignKey(typeof(UserGroupDto), OnDelete = Rule.Cascade)]
public int UserGroupId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |