Newer
Older
LooselyCoupledMonolith-Saga / src / Shipping.Contracts / CreateShippingLabel.cs
@Derek Comartin Derek Comartin on 23 Mar 2021 168 bytes Demo
using System;
using NServiceBus;

namespace Shipping.Contracts
{
    public class CreateShippingLabel : ICommand
    {
        public Guid OrderId { get; set; }
    }
}