using KfChatDotNetBot.Models.DbModels; using Microsoft.EntityFrameworkCore; namespace KfChatDotNetBot; public class ApplicationDbContext : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder builder) { builder.UseSqlite("Data Source=db.sqlite"); } public DbSet Users { get; set; } public DbSet Juicers { get; set; } public DbSet Settings { get; set; } public DbSet HowlggBets { get; set; } public DbSet RainbetBets { get; set; } public DbSet TwitchViewCounts { get; set; } }