Skip to content

Commit

Permalink
Prepared ShippingSagaData to support List instead of ICollection
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdstelt committed Jan 11, 2023
1 parent 7566484 commit 8b51d14
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Product> Products { get; set; }

public class Product
{
public int Identifier { get; set; }
}
public List<int> Products { get; set; }
}

0 comments on commit 8b51d14

Please sign in to comment.