18 lines
327 B
C#
18 lines
327 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Npgsql.EntityFrameworkCore;
|
|
using pwt_0x01_ng.Models;
|
|
|
|
namespace pwt0x01ng.Models.Database
|
|
{
|
|
public class DBContext : DbContext
|
|
{
|
|
public DBContext(DbContextOptions<DBContext> options) : base(options)
|
|
{
|
|
|
|
}
|
|
|
|
public DbSet<Carousel> Carousel { get; set; }
|
|
}
|
|
}
|