15 lines
310 B
C#
15 lines
310 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Nevyn.Models
|
|
{
|
|
public class ShoppingContext : DbContext
|
|
{
|
|
public ShoppingContext(DbContextOptions<ShoppingContext> options) : base(options)
|
|
{
|
|
|
|
}
|
|
|
|
public DbSet<ShoppingList> UpdateShopping { get; set; } = null!;
|
|
}
|
|
}
|