14 lines
450 B
C#
14 lines
450 B
C#
using FictionArchive.Service.Shared.Services.Database;
|
|
using FictionArchive.Service.UserService.Models.Database;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace FictionArchive.Service.UserService.Services;
|
|
|
|
public class UserServiceDbContext : FictionArchiveDbContext
|
|
{
|
|
public DbSet<User> Users { get; set; }
|
|
|
|
public UserServiceDbContext(DbContextOptions options, ILogger<UserServiceDbContext> logger) : base(options, logger)
|
|
{
|
|
}
|
|
} |