12345678910111213141516171819 |
- 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<SenlanDbContext> options)
- : base(options)
- {
- }
- public DbSet<AppEdition>? AppEdition { get; set; }
- }
- }
|