summaryrefslogblamecommitdiff
path: root/Api/Models/DbWikiWakaContext.cs
blob: cf5632aeba78c5d867ccd4dde946d3f6672c7407 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                             
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; }
}