View Source
Class LastSyncedDto
Assembly: Umbraco.Infrastructure.dll
Syntax
[TableName("umbracoLastSynced")]
[PrimaryKey("machineId", AutoIncrement = false)]
[ExplicitColumns]
public class LastSyncedDto
Properties
View Source
LastSyncedDate
Declaration
[Column("lastSyncedDate")]
public DateTime LastSyncedDate { get; set; }
Property Value
| Type |
Description |
| DateTime |
|
View Source
LastSyncedExternalId
Declaration
[Column("lastSyncedExternalId")]
public int? LastSyncedExternalId { get; set; }
Property Value
View Source
LastSyncedInternalId
Declaration
[Column("lastSyncedInternalId")]
public int? LastSyncedInternalId { get; set; }
Property Value
View Source
MachineId
Declaration
[Column("machineId")]
[PrimaryKeyColumn(Name = "PK_lastSyncedMachineId", AutoIncrement = false, Clustered = true)]
public required string MachineId { get; set; }
Property Value