Table of Contents

Class AppSettingHistorySqlModel

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

Represents a setting history entity.

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

Properties

AppSetting

public virtual AppSettingSqlModel AppSetting { get; set; }

Property Value

AppSettingSqlModel

AppSettingId

The setting id associated with this setting history.

public Guid AppSettingId { get; set; }

Property Value

Guid

CompressionLevel

Defines the level of compression used.

public CompressionLevel CompressionLevel { get; set; }

Property Value

CompressionLevel

CompressionType

Specifies the type of compression applied to the data.
Determines which decoding method should be used.

public CompressionType CompressionType { get; set; }

Property Value

CompressionType

CreatedBy

The user who created this setting history.

public virtual UserSqlModel CreatedBy { get; set; }

Property Value

UserSqlModel

CreatedById

The id of the user who created this setting history.

public Guid? CreatedById { get; set; }

Property Value

Guid?

Data

The binary data associated with the setting history.

public byte[] Data { get; set; }

Property Value

byte[]

RestoredBy

The user who last restored this setting history.

public virtual UserSqlModel RestoredBy { get; set; }

Property Value

UserSqlModel

RestoredById

The id of the user who last restored this setting history.

public Guid? RestoredById { get; set; }

Property Value

Guid?

RestoredOn

The date and time when the entity was last restored, or null if never restored.

public DateTime? RestoredOn { get; set; }

Property Value

DateTime?

RowVersion

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

public byte[] RowVersion { get; set; }

Property Value

byte[]

SerializerType

Defines the serialization type used for data serialization and deserialization.

public SerializerType SerializerType { get; set; }

Property Value

SerializerType

Slug

An url friendly version of the Version, generated by trimming, converting to lowercase,
and replacing spaces or special characters with hyphens (using ToSlug(string) extension method).

public string Slug { get; set; }

Property Value

string

Tenant

public virtual TenantSqlModel Tenant { get; set; }

Property Value

TenantSqlModel

TenantId

public Guid? TenantId { get; set; }

Property Value

Guid?

Version

Represents the version of the setting.

public string Version { get; set; }

Property Value

string