namespace Before; /// An order belonging to a . public class Order : DbBase { /// Free-text description. public string Description { get; set; } = string.Empty; /// The owning client; set by . public Client? Client { get; set; } }