using Microsoft.EntityFrameworkCore;
public class AppDbContext : DbContext
{
public AppDbContext(DbContextOptions<AppDbContext> options)
: base(options) { }
public DbSet<HololiveSchedule> HololiveSchedule => Set<HololiveSchedule>();
}