feat: aminecontent calibration reforge

This commit is contained in:
2026-06-17 10:31:40 +03:00
parent 0849a0ae67
commit 0676c0be75
23 changed files with 588 additions and 916 deletions
@@ -0,0 +1,17 @@
using Microsoft.EntityFrameworkCore;
namespace GSS2.Core.Analysis.AmineContent.Database;
public class Context : DbContext
{
public DbSet<BrandRecord> BrandRecords => Set<BrandRecord>();
public DbSet<FeatureRecord> FeatureRecords => Set<FeatureRecord>();
public DbSet<ImageRecord> ImageRecords => Set<ImageRecord>();
// public DbSet<ResultRecord> ResultRecords => Set<ResultRecord>();
public DbSet<SeparatorRecord> SeparatorRecords => Set<SeparatorRecord>();
public DbSet<SampleRecord> SampleRecords => Set<SampleRecord>();
public Context(DbContextOptions<Context> options)
: base(options)
{ }
}