Skip to content

Commit 35e1561

Browse files
authored
Add CreatedDate and OriginalCreatedDate properties
1 parent b6cba02 commit 35e1561

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/MigrationTools/DataContracts/RevisionItem.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ public class RevisionItem
99
public int Index { get; set; }
1010
public int Number { get; set; }
1111
public DateTime ChangedDate { get; set; }
12-
1312
public DateTime OriginalChangedDate { get; set; }
13+
14+
public DateTime CreatedDate { get; set; }
15+
public DateTime OriginalCreatedDate { get; set; }
1416
public string Type { get; set; }
1517
public Dictionary<string, FieldItem> Fields { get; set; }
1618
public Dictionary<string, EnricherData> EnricherData { get; set; }
1719
}
18-
}
20+
}

0 commit comments

Comments
 (0)