2017-02-27 19:28:32 +01:00
|
|
|
|
|
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
|
|
|
|
{
|
2017-02-27 19:28:32 +01:00
|
|
|
|
public class BaseProduct
|
2016-05-17 18:22:18 +02:00
|
|
|
|
{
|
2017-02-27 19:28:32 +01:00
|
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// A contractual description for this product.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Controls wether this product or service
|
|
|
|
|
|
/// may be offered to clients, or simply
|
|
|
|
|
|
/// are internal workflow entry point.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>true when this product belongs to the public catalog.</returns>
|
|
|
|
|
|
public bool Public { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|