2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
2016-06-14 03:37:57 +02:00
|
|
|
|
namespace Yavsc.Models.Market
|
2016-05-17 18:22:18 +02:00
|
|
|
|
{
|
|
|
|
|
|
public partial class Product : BaseProduct
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Weight in gram
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public decimal Weight { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Height in meter
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public decimal Height { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Width in meter
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public decimal Width { get; set; }
|
|
|
|
|
|
public decimal Depth { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// In euro
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public decimal? Price { get; set; }
|
2016-11-16 10:17:39 +01:00
|
|
|
|
|
|
|
|
|
|
// TODO make use of public Money Money { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|