mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
finish wiring Rules junction
This commit is contained in:
parent
28a8777572
commit
dba6f73f1a
2 changed files with 5 additions and 1 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue