15 lines
371 B
C#
15 lines
371 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PARR.AIHITMainLoader.Models;
|
|
|
|
namespace PARR.AIHITMainLoader.Context
|
|
{
|
|
internal class AIHITContext : DbContext
|
|
{
|
|
public AIHITContext(DbContextOptions<AIHITContext> options) : base(options) { }
|
|
|
|
|
|
public DbSet<CvkData> CvkDatas { get; set; }
|
|
public DbSet<PtkData> PtkDatas { get; set; }
|
|
}
|
|
}
|