using Microsoft.EntityFrameworkCore; using Senlan.VersionApp.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Senlan.VersionApp.Data { public class SenlanDbContext : DbContext { public SenlanDbContext(DbContextOptions options) : base(options) { } public DbSet? AppEdition { get; set; } } }