13 lines
No EOL
252 B
C#
Executable file
13 lines
No EOL
252 B
C#
Executable file
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Api.Models;
|
|
|
|
public class Context : DbContext
|
|
{
|
|
public Context(DbContextOptions<Context> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<Item> Items { get; set; } = null!;
|
|
} |