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