Table of Contents

Class LockSqlModel

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

Represents a lock entity.

[Table("Locks")]
public class LockSqlModel
Inheritance
LockSqlModel
Inherited Members

Properties

ExpiryTime

The expiry time of the lock.

public DateTime ExpiryTime { get; set; }

Property Value

DateTime

Key

The key of the lock.

public string Key { get; set; }

Property Value

string

Owner

The owner of the lock.

public string Owner { get; set; }

Property Value

string