Make vault storages work
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace Bitvault;
|
||||
|
||||
public class VaultDbContext: DbContext
|
||||
{
|
||||
public DbSet<Locker> Lockers { get; set; }
|
||||
|
||||
public VaultDbContext(DbContextOptions<VaultDbContext> options): base(options)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user