13 lines
264 B
C#
13 lines
264 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace TodoApi.Models;
|
|
|
|
public class TodoContext : DbContext
|
|
{
|
|
public TodoContext(DbContextOptions<TodoContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<TodoItem> TodoItems { get; set; } = null!;
|
|
} |