12 lines
No EOL
316 B
C#
12 lines
No EOL
316 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using turf_tasker.Models;
|
|
|
|
namespace turf_tasker.Data;
|
|
|
|
public class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options) { }
|
|
|
|
public DbSet<LawnCareEvent> LawnCareEvents { get; set; }
|
|
} |