Class UserGroupMappingSqlModel
- Namespace
- OpenSettings.Domains.Sql.Entities
- Assembly
- OpenSettings.dll
Represents a user-group mapping entity.
[Table("UserGroupMappings")]
public class UserGroupMappingSqlModel : EntityBase<int>
- Inheritance
-
UserGroupMappingSqlModel
- Inherited Members
Properties
CreatedBy
The user who created this user user-group mapping.
[ForeignKey("CreatedById")]
public virtual UserSqlModel CreatedBy { get; set; }
Property Value
CreatedById
The id of the user who created this user-group mapping.
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
UpdatedOn
[NotMapped]
public DateTime? UpdatedOn { get; set; }
Property Value
User
The user associated with this mapping.
public virtual UserSqlModel User { get; set; }
Property Value
UserId
The id of the associated user.
public Guid UserId { get; set; }