14 lines
340 B
C#
14 lines
340 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PARR.AIHITRelationshipsSyncer.Models;
|
|
|
|
namespace PARR.AIHITRelationshipsSyncer.Context
|
|
{
|
|
internal class AIHITContext : DbContext
|
|
{
|
|
public AIHITContext(DbContextOptions<AIHITContext> options) : base(options) { }
|
|
|
|
|
|
public DbSet<AihitData> AihitDatas { get; set; }
|
|
}
|
|
}
|