Generate Challonge

This commit is contained in:
2018-10-07 18:06:38 +02:00
parent 681deda3d2
commit 70b5ea54f7
5 changed files with 16 additions and 6 deletions

View File

@@ -8,7 +8,8 @@ namespace LaDOSE.Entity.Context
public DbSet<ApplicationUser> ApplicationUser { get; set; }
public DbSet<Season> Season { get; set; }
public DbSet<Event> Event { get; set; }
//public DbSet<SeasonGame> SeasonGame { get; set; }
public DbSet<SeasonGame> SeasonGame { get; set; }
public DbSet<EventGame> EventGame { get; set; }
public LaDOSEDbContext(DbContextOptions options) : base(options)
{

View File

@@ -8,5 +8,7 @@
public int GameId { get; set; }
public Game Game { get; set; }
public int? ChallongeId { get; set; }
public string ChallongeUrl { get; set; }
}
}