using Microsoft.EntityFrameworkCore; namespace WikiWaka.Api.Models; public class DbWikiWakaContext(DbContextOptions options) : DbContext(options) { public DbSet Content { get; set; } public DbSet Version { get; set; } public DbSet Property { get; set; } public DbSet Language { get; set; } }