diff --git a/exercises/04-integration/before/Divergent.Shipping/Sagas/ShippingSagaData.cs b/exercises/04-integration/before/Divergent.Shipping/Sagas/ShippingSagaData.cs index 795e5926..678ba6d7 100644 --- a/exercises/04-integration/before/Divergent.Shipping/Sagas/ShippingSagaData.cs +++ b/exercises/04-integration/before/Divergent.Shipping/Sagas/ShippingSagaData.cs @@ -8,10 +8,5 @@ public class ShippingSagaData : ContainSagaData public int CustomerId { get; set; } public bool IsOrderSubmitted { get; set; } public bool IsPaymentProcessed { get; set; } - public ICollection Products { get; set; } - - public class Product - { - public int Identifier { get; set; } - } + public List Products { get; set; } } \ No newline at end of file