Install Wizard
This commit is contained in:
13
Oqtane.Server/Repository/MasterContext.cs
Normal file
13
Oqtane.Server/Repository/MasterContext.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public class MasterContext : DbContext
|
||||
{
|
||||
public MasterContext(DbContextOptions<MasterContext> options) : base(options) { }
|
||||
|
||||
public virtual DbSet<Alias> Alias { get; set; }
|
||||
public virtual DbSet<Tenant> Tenant { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user