Added tags model

This commit is contained in:
2018-02-18 14:38:28 -05:00
parent b921410515
commit d996f7a2cb
2 changed files with 26 additions and 0 deletions

View File

@ -10,6 +10,7 @@ namespace YTManager
{
public DbSet<Models.Channel> Channels { get; set; }
public DbSet<Models.Video> Videos { get; set; }
public DbSet<Models.Tag> Tags { get; set; }
public MediaDB(DbContextOptions<MediaDB> options) :base(options){ }