yavsc/Yavsc/Model/Market/Service.cs

16 lines
392 B
C#

namespace Yavsc.Models.Market {
8 years ago
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
public partial class Service : BaseProduct
{
public string ContextId { get; set; }
[ForeignKey("ContextId")]
public virtual Activity Context { get; set; }
8 years ago
public List<IBillingClause> Billing { get; set; }
}
}