mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
add FK navigations
This commit is contained in:
parent
ed081ea1b8
commit
45cd990e64
2 changed files with 3 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ public class FilterList : BaseEntity
|
|||
public string IssuesUrl { get; set; }
|
||||
public ICollection<FilterListLanguage> FilterListLanguages { get; set; }
|
||||
public int? LicenseId { get; set; }
|
||||
public License License { get; set; }
|
||||
public ICollection<FilterListMaintainer> FilterListMaintainers { get; set; }
|
||||
public ICollection<Merge> MergeFilterLists { get; set; }
|
||||
public ICollection<Merge> UpstreamMergeFilterLists { get; set; }
|
||||
|
|
@ -27,6 +28,7 @@ public class FilterList : BaseEntity
|
|||
public ICollection<Scrape> Scrapes { get; set; }
|
||||
public string SubmissionUrl { get; set; }
|
||||
public int? SyntaxId { get; set; }
|
||||
public Syntax Syntax { get; set; }
|
||||
public string ViewUrl { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -3,5 +3,6 @@
|
|||
public class Scrape : BaseEntity
|
||||
{
|
||||
public int FilterListId { get; set; }
|
||||
public FilterList FilterList { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue