Table of Contents

Class AppIdentifierMappingSqlModel

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

Represents an app-identifier mapping entity.

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

Properties

App

The app associated with this mapping.

public virtual AppSqlModel App { get; set; }

Property Value

AppSqlModel

AppId

The id of the associated app.

public Guid AppId { get; set; }

Property Value

Guid

CreatedBy

The user who created this app-identifier mapping.

public virtual UserSqlModel CreatedBy { get; set; }

Property Value

UserSqlModel

CreatedById

The id of the user who created this app-identifier mapping.

public Guid? CreatedById { get; set; }

Property Value

Guid?

Identifier

The identifier associated with this mapping.

public virtual IdentifierSqlModel Identifier { get; set; }

Property Value

IdentifierSqlModel

IdentifierId

The id of the associated identifier.

public Guid IdentifierId { get; set; }

Property Value

Guid

RowVersion

A concurrency token used for tracking changes.
Helps prevent conflicts during concurrent updates.

public byte[] RowVersion { get; set; }

Property Value

byte[]

SortOrder

The sort order of this mapping in a list.

public int SortOrder { get; set; }

Property Value

int

Tenant

public virtual TenantSqlModel Tenant { get; set; }

Property Value

TenantSqlModel

TenantId

public Guid? TenantId { get; set; }

Property Value

Guid?

UpdatedBy

The user who last updated this app-identifier mapping.

public virtual UserSqlModel UpdatedBy { get; set; }

Property Value

UserSqlModel

UpdatedById

The id of the user who last updated this app-identifier mapping.

public Guid? UpdatedById { get; set; }

Property Value

Guid?