Newer
Older
MessagingNamingStructure / src / Billing.Contracts / BillOrder.cs
@Derek Comartin Derek Comartin on 29 Mar 2021 157 bytes Copy of Loosely Coupled Monolith (NServiceBus)
using System;
using NServiceBus;

namespace Billing.Contracts
{
    public class BillOrder : ICommand
    {
        public Guid OrderId { get; set; }
    }
}