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
AppId
The id of the associated app.
public Guid AppId { get; set; }
Property Value
CreatedBy
The user who created this app-identifier mapping.
public virtual UserSqlModel CreatedBy { get; set; }
Property Value
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
IdentifierId
The id of the associated identifier.
public Guid IdentifierId { get; set; }
Property Value
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
Tenant
public virtual TenantSqlModel Tenant { get; set; }
Property Value
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
UpdatedById
The id of the user who last updated this app-identifier mapping.
public Guid? UpdatedById { get; set; }
Property Value
- Guid?