Table of Contents

Class UserRoleMappingSqlModel

Namespace
OpenSettings.Domains.Sql.Entities
Assembly
OpenSettings.dll

Represents a user-role mapping entity.

public class UserRoleMappingSqlModel : EntityBase<Guid>
Inheritance
UserRoleMappingSqlModel
Inherited Members

Properties

CreatedBy

The user who created this user-role mapping.

public virtual UserSqlModel CreatedBy { get; set; }

Property Value

UserSqlModel

CreatedById

The id of the user who created this user-role mapping.

public Guid? CreatedById { get; set; }

Property Value

Guid?

Tenant

public virtual TenantSqlModel Tenant { get; set; }

Property Value

TenantSqlModel

TenantId

public Guid? TenantId { get; set; }

Property Value

Guid?

User

The user associated with this mapping.

public virtual UserSqlModel User { get; set; }

Property Value

UserSqlModel

UserId

The id of the associated user.

public Guid UserId { get; set; }

Property Value

Guid

UserRole

The role associated with this mapping.

public virtual UserRoleSqlModel UserRole { get; set; }

Property Value

UserRoleSqlModel

UserRoleId

The id of the associated user role.

public Guid UserRoleId { get; set; }

Property Value

Guid