Class UserClaimMappingSqlModel
- Namespace
- OpenSettings.Domains.Sql.Entities
- Assembly
- OpenSettings.dll
Represents a user-claim mapping entity.
public class UserClaimMappingSqlModel : EntityBase<Guid>
- Inheritance
-
UserClaimMappingSqlModel
- Inherited Members
Properties
CreatedBy
The user who created this user-claim mapping.
public virtual UserSqlModel CreatedBy { get; set; }
Property Value
CreatedById
The id of the user who created this user-claim mapping.
public Guid? CreatedById { get; set; }
Property Value
- Guid?
Tenant
public virtual TenantSqlModel Tenant { get; set; }
Property Value
TenantId
public Guid? TenantId { get; set; }
Property Value
- Guid?
User
The user associated with this mapping.
public virtual UserSqlModel User { get; set; }
Property Value
UserClaim
The claim associated with this mapping.
public virtual UserClaimSqlModel UserClaim { get; set; }
Property Value
UserClaimId
The id of the associated user claim.
public Guid UserClaimId { get; set; }
Property Value
UserId
The id of the associated user.
public Guid UserId { get; set; }