Skip to content

Commit 58b74c6

Browse files
committed
Update DataItem.cs
1 parent c00c898 commit 58b74c6

File tree

1 file changed

+6
-0
lines changed
  • ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation

1 file changed

+6
-0
lines changed

ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation/DataItem.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ public class DataItem
1010
[JsonProperty]
1111
public string name { get; set; } // Mandatory
1212

13+
/// <summary>
14+
/// The target object of the mapping.
15+
/// </summary>
16+
[JsonProperty("dataObject", NullValueHandling = NullValueHandling.Ignore, DefaultValueHandling = DefaultValueHandling.Ignore)]
17+
public DataObject dataObject { get; set; }
18+
1319
[JsonProperty("dataType", NullValueHandling = NullValueHandling.Ignore, DefaultValueHandling = DefaultValueHandling.Ignore)]
1420
public string dataType { get; set; }
1521

0 commit comments

Comments
 (0)