Class UserRoleGroupMappingModel
- Namespace
- OpenSettings.Domains.Sql.Entities
- Assembly
- OpenSettings.dll
Represents a user role-group mapping entity.
[Table("UserRoleGroupMappings")]
public class UserRoleGroupMappingModel : EntityBase<int>
- Inheritance
-
UserRoleGroupMappingModel
- Inherited Members
Properties
CreatedBy
The user who created this user role-group mapping.
[ForeignKey("CreatedById")]
public virtual UserSqlModel CreatedBy { get; set; }
Property Value
CreatedById
The id of the user who created this user role-group.
public Guid? CreatedById { get; set; }
Property Value
- Guid?
Group
The user group associated with this mapping.
public virtual UserGroupSqlModel Group { get; set; }
Property Value
GroupId
The id of the associated user group.
public int GroupId { get; set; }
Property Value
Id
[NotMapped]
public int Id { get; set; }
Property Value
Role
The user role associated with this mapping.
public virtual UserRoleSqlModel Role { get; set; }
Property Value
RoleId
The id of the associated user role.
public int RoleId { get; set; }
Property Value
UpdatedOn
[NotMapped]
public DateTime? UpdatedOn { get; set; }