mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 02:20:28 +08:00
16 lines
605 B
C#
16 lines
605 B
C#
using Foxel.Models.DataBase;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Foxel;
|
|
|
|
public class MyDbContext(DbContextOptions<MyDbContext> options) : DbContext(options)
|
|
{
|
|
public DbSet<Picture> Pictures { get; set; } = null!;
|
|
public DbSet<User> Users { get; set; } = null!;
|
|
public DbSet<Tag> Tags { get; set; } = null!;
|
|
public DbSet<Config> Configs { get; set; } = null!;
|
|
public DbSet<Favorite> Favorites { get; set; } = null!;
|
|
public DbSet<Album> Albums { get; set; } = null!;
|
|
public DbSet<Role> Roles { get; set; } = null!;
|
|
public DbSet<Log> Logs { get; set; } = null!;
|
|
} |