finish wiring Rules junction

This commit is contained in:
Collin M. Barrett 2017-10-30 14:16:37 -05:00
parent 28a8777572
commit dba6f73f1a
2 changed files with 5 additions and 1 deletions

View file

@ -12,6 +12,7 @@ public class FilterList : BaseEntity
public string HomeUrl { get; set; }
public string IssuesUrl { get; set; }
public ICollection<FilterListLanguage> FilterListLanguages { get; set; }
public ICollection<FilterListRule> FilterListRules { get; set; }
public ICollection<FilterListSoftware> FilterListSoftware { get; set; }
public int? MaintainerId { get; set; }
public string Name { get; set; }

View file

@ -1,7 +1,10 @@
namespace FilterLists.Data.Entities
using System.Collections.Generic;
namespace FilterLists.Data.Entities
{
public class Rule : BaseEntity
{
public ICollection<FilterListRule> FilterListRules { get; set; }
public string Raw { get; set; }
}
}