Skip to content

Commit

Permalink
Added missing SentPackage command
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Oct 6, 2020
1 parent 09d6e09 commit 064506c
Showing 1 changed file with 20 additions and 0 deletions.
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using Carts.Carts.ValueObjects;
using Core.Commands;

namespace Shipments.Packages.Commands
{
public class SentPackage: ICommand
{
public Guid OrderId { get; }

public IReadOnlyList<ProductItem> ProductItems { get; }

public SentPackage(Guid orderId, IReadOnlyList<ProductItem> productItems)
{
OrderId = orderId;
ProductItems = productItems;
}
}
}

0 comments on commit 064506c

Please sign in to comment.