Skip to content

Instantly share code, notes, and snippets.

@explorer14
Last active November 16, 2021 20:02
Embed
What would you like to do?
public class PurchaseOrderChanges
{
// other attributes not relevant for this
PurchaseOrderLineChange[] PurchaseOrderLineChanges;
}
public class PurchaseOrderLineChange
{
int PurchaseOrderLineId;
int? QuantityCancelled;
DateTime? ExpectedDeliveryDate;
int ResultingVersion;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment