namespace Yavsc.Models.Market { public partial class Product : BaseProduct { /// /// Weight in gram /// /// public decimal Weight { get; set; } /// /// Height in meter /// /// public decimal Height { get; set; } /// /// Width in meter /// /// public decimal Width { get; set; } public decimal Depth { get; set; } /// /// In euro /// /// public decimal? Price { get; set; } // TODO make use of public Money Money { get; set; } } }