15 lines
299 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
using Microsoft.EntityFrameworkCore;
namespace DamageAssesment.Api.Surveys.Db
{
public class SurveysDbContext:DbContext
{
public SurveysDbContext(DbContextOptions options) : base(options)
{
}
public DbSet<Db.Survey> Surveys { get; set; }
}
}