select logo

This commit is contained in:
Natlinux
2022-11-10 22:48:47 +01:00
parent 727d4c7285
commit d4dd7a545a
63 changed files with 247 additions and 37 deletions

View File

@@ -8,9 +8,10 @@ namespace Apollon.Domain.Models
{
public class Tournament
{
public Tournament(Guid id, string organisation, string tournamentName, string competition, string competitionImage, DateTime startDate, DateTime endDate, string location, int rounds)
public Tournament(Guid id, string logo, string organisation, string tournamentName, string competition, string competitionImage, DateTime startDate, DateTime endDate, string location, int rounds)
{
Id = id;
Logo = logo;
Organisation = organisation;
TournamentName = tournamentName;
Competition = competition;
@@ -22,6 +23,7 @@ namespace Apollon.Domain.Models
}
public Guid Id { get; }
public string Logo { get; }
public string Organisation { get; }
public string TournamentName { get; }
public string Competition { get; }