using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace WatchLog.Data { public class ApplicationDbContext(DbContextOptions options) : IdentityDbContext(options) { // Global public DbSet Genres { get; set; } public DbSet GlobalEntities { get; set; } public DbSet StreamingPlatforms { get; set; } public DbSet MediaType { get; set; } // 'Watchlog.Data.Type' if namecolsion with System.Type //Private public DbSet