yavsc/Yavsc/Model/Market/Service.cs

16 lines
392 B
C#
Raw Normal View History

2016-07-27 10:55:44 +02:00
namespace Yavsc.Models.Market {
2016-08-30 23:04:25 +02:00
using System.Collections.Generic;
2016-07-27 10:55:44 +02:00
using System.ComponentModel.DataAnnotations.Schema;
public partial class Service : BaseProduct
{
public string ContextId { get; set; }
[ForeignKey("ContextId")]
public virtual Activity Context { get; set; }
2016-08-30 23:04:25 +02:00
public List<IBillingClause> Billing { get; set; }
2016-07-27 10:55:44 +02:00
}
}