blob: cf5632aeba78c5d867ccd4dde946d3f6672c7407 (
plain) (
tree)
|
|
using Microsoft.EntityFrameworkCore;
namespace WikiWaka.Api.Models;
public class DbWikiWakaContext(DbContextOptions options) : DbContext(options)
{
public DbSet<Content> Content { get; set; }
public DbSet<Version> Version { get; set; }
public DbSet<Property> Property { get; set; }
public DbSet<Language> Language { get; set; }
}
|