11 lines
226 B
C#
11 lines
226 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Manager.Data.Contexts;
|
|
|
|
public class LibraryDbContext : DbContext
|
|
{
|
|
public LibraryDbContext(DbContextOptions<LibraryDbContext> options) : base(options)
|
|
{
|
|
|
|
}
|
|
} |