View Source
Class User2UserGroupDto
Assembly: Umbraco.Infrastructure.dll
Syntax
[TableName("umbracoUser2UserGroup")]
[ExplicitColumns]
public class User2UserGroupDto
Fields
View Source
TableName
Declaration
public const string TableName = "umbracoUser2UserGroup"
Field Value
Properties
View Source
UserGroupId
Declaration
[Column("userGroupId")]
[ForeignKey(typeof(UserGroupDto))]
public int UserGroupId { get; set; }
Property Value
View Source
UserId
Declaration
[Column("userId")]
[PrimaryKeyColumn(AutoIncrement = false, Name = "PK_user2userGroup", OnColumns = "userId, userGroupId")]
[ForeignKey(typeof(UserDto))]
public int UserId { get; set; }
Property Value