Updated DataContext

Added DbSet for ChangeLog table.
This commit is contained in:
Mario Steele 2025-07-31 13:00:32 -05:00
parent e2d0c327eb
commit 72dca6c1fe

View file

@ -26,4 +26,5 @@ public class DataContext : DbContext
public DbSet<Setting> Settings { get; set; }
public DbSet<Subscription> Subscriptions { get; set; }
public DbSet<Video> Videos { get; set; }
public DbSet<ChangeLog> ChangeLogs { get; set; }
}