Newer
Older
MessagingNamingStructure / src / Shipping / ShippingLabel.cs
@Derek Comartin Derek Comartin on 29 Mar 2021 273 bytes Copy of Loosely Coupled Monolith (NServiceBus)
using System;
using System.ComponentModel.DataAnnotations;

namespace Shipping
{
    public class ShippingLabel
    {
        [Key]
        public Guid OrderId { get; set; }
        public DateTime OrderDate { get; set; }
        public bool Cancelled { get; set; }
    }
}