minor reformatting

This commit is contained in:
Collin M. Barrett 2018-02-09 13:49:22 -06:00
parent 7010b8d097
commit 650c5a99ef
5 changed files with 0 additions and 5 deletions

View file

@ -4,7 +4,6 @@ public class FilterListLanguage : BaseJunction
{
public int FilterListId { get; set; }
public FilterList FilterList { get; set; }
public int LanguageId { get; set; }
public Language Language { get; set; }
}

View file

@ -4,7 +4,6 @@ public class FilterListMaintainer : BaseJunction
{
public int FilterListId { get; set; }
public FilterList FilterList { get; set; }
public int MaintainerId { get; set; }
public Maintainer Maintainer { get; set; }
}

View file

@ -4,7 +4,6 @@ public class Fork : BaseJunction
{
public int ForkFilterListId { get; set; }
public FilterList ForkFilterList { get; set; }
public int UpstreamFilterListId { get; set; }
public FilterList UpstreamFilterList { get; set; }
}

View file

@ -4,7 +4,6 @@ public class Merge : BaseJunction
{
public int MergeFilterListId { get; set; }
public FilterList MergeFilterList { get; set; }
public int UpstreamFilterListId { get; set; }
public FilterList UpstreamFilterList { get; set; }
}

View file

@ -4,7 +4,6 @@ public class SoftwareSyntax : BaseJunction
{
public int SoftwareId { get; set; }
public Software Software { get; set; }
public int SyntaxId { get; set; }
public Syntax Syntax { get; set; }
}