temperature-alarm/backend/Api/DBAccess/DBContext.cs

19 lines
429 B
C#

using Microsoft.EntityFrameworkCore;
using Api.Models;
using Api.Models.Users;
using Api.Models.Devices;
namespace Api
{
public class DBContext : DbContext
{
public DbSet<User> Users { get; set; }
public DbSet<Device> Devices { get; set; }
public DbSet<TemperatureLogs> TemperatureLogs { get; set; }
public DBContext(DbContextOptions<DBContext> options) : base(options) { }
}
}