combine competitionlist with combobox

This commit is contained in:
Natlinux
2022-11-07 20:59:15 +01:00
parent 149e6caa9a
commit cc6636528c
7 changed files with 132 additions and 16 deletions

View File

@@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Nullable>disable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.Domain.Models
{
public class Competition
{
public string CompetitionName{ get; set; }
public string CompetitionImage{ get; set; }
}
}