clean up a bit

This commit is contained in:
Natlinux81
2022-08-17 01:36:42 +02:00
parent 4531f31658
commit b10a792aad
15 changed files with 80 additions and 56 deletions

View File

@@ -8,11 +8,11 @@ namespace Apollon.WPF.Models
{
public class Tournament
{
public Tournament(string organisation, string tournamentname, string category, string startdate, string enddate, string location, int rounds = 0)
public Tournament(string organisation, string tournamentname, string competition, string startdate, string enddate, string location, int rounds = 0)
{
Organisation = organisation;
Tournamentname = tournamentname;
Category = category;
Competition = competition;
Startdate = startdate;
Enddate = enddate;
Location = location;
@@ -21,7 +21,7 @@ namespace Apollon.WPF.Models
public string Organisation { get; }
public string Tournamentname { get; }
public string Category { get; }
public string Competition { get; }
public string Startdate { get; }
public string Enddate { get; }
public string Location { get; }