Class LastSyncedDto
Data Transfer Object (DTO) representing information about the last synchronization event for a data entity.
Inheritance
object
Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
Assembly: Umbraco.Infrastructure.dll
Syntax
public class LastSyncedDto
Constructors
View SourceLastSyncedDto()
Declaration
public LastSyncedDto()
Fields
View SourcePrimaryKeyColumnName
Declaration
public const string PrimaryKeyColumnName = "machineId"
Field Value
| Type | Description |
|---|---|
| string |
Properties
View SourceLastSyncedDate
Gets or sets the date and time when the last synchronization occurred.
Declaration
public DateTime LastSyncedDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
LastSyncedExternalId
Gets or sets the nullable external identifier associated with the last synchronized entity.
Declaration
[NullSetting(NullSetting = NullSettings.Null)]
public int? LastSyncedExternalId { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
LastSyncedInternalId
Gets or sets the nullable internal identifier of the last synchronized item.
Declaration
[NullSetting(NullSetting = NullSettings.Null)]
public int? LastSyncedInternalId { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
MachineId
Gets or sets the unique identifier of the machine that performed the last synchronization.
Declaration
[PrimaryKeyColumn(Name = "PK_lastSyncedMachineId", AutoIncrement = false, Clustered = true)]
public required string MachineId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |