mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
15 lines
297 B
C#
15 lines
297 B
C#
using API.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Data
|
|
{
|
|
public class DataContext : DbContext
|
|
{
|
|
public DataContext(DbContextOptions options) : base(options)
|
|
{
|
|
|
|
}
|
|
|
|
public DbSet<AppUser> Users { get; set; }
|
|
}
|
|
} |