Skip to content

Commit e6a1ddd

Browse files
committed
Changed dataItems in DataObject to dynamic, to be consistent and faciliate adding different types to the list.
1 parent fcc17de commit e6a1ddd

File tree

1 file changed

+1
-1
lines changed
  • ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation

1 file changed

+1
-1
lines changed

ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation/DataObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class DataObject
2121
/// The collection of Data Items associated with this Data Object.
2222
/// </summary>
2323
[JsonProperty("dataItems", NullValueHandling=NullValueHandling.Ignore)]
24-
public List<DataItem> dataItems { get; set; }
24+
public List<dynamic> dataItems { get; set; }
2525

2626
/// <summary>
2727
/// The connection information associated to the Data Object.

0 commit comments

Comments
 (0)