using Start.Server.Models; using Microsoft.AspNetCore.ApiAuthorization.IdentityServer; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Options; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Duende.IdentityServer.EntityFramework.Options; namespace Start.Server.Data { public class ApplicationDbContext : ApiAuthorizationDbContext { public DbSet Bookmarks => Set(); public DbSet BookmarkGroups => Set(); public DbSet BookmarkContainers => Set(); public ApplicationDbContext(DbContextOptions options, IOptions operationalStoreOptions) : base(options, operationalStoreOptions) { } } }