//----------------------------------------------------------------------- // // Copyright (c) lanedirt. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.WorkerStatus.Database; using Microsoft.EntityFrameworkCore; /// /// WorkerStatusDbContext class. /// public class WorkerStatusDbContext : DbContext, IWorkerStatusDbContext { /// /// Initializes a new instance of the class. /// public WorkerStatusDbContext() { } /// /// Initializes a new instance of the class. /// /// DbContextOptions instance. public WorkerStatusDbContext(DbContextOptions options) : base(options) { } /// /// Gets or sets the WorkerServiceStatus DbSet. /// public DbSet WorkerServiceStatuses { get; set; } }