Timothy Schenk
9f3007b10e
All checks were successful
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 25s
Build, Package and Push Images / sbom-scan (push) Successful in 49s
Build, Package and Push Images / container-build (push) Successful in 2m11s
Build, Package and Push Images / sonarqube (push) Successful in 2m12s
Build, Package and Push Images / container-sbom-scan (push) Successful in 39s
15 lines
359 B
C#
15 lines
359 B
C#
using JetBrains.Annotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Server.DB.Documents;
|
|
|
|
namespace Server.DB;
|
|
|
|
public class WonderkingContext : DbContext
|
|
{
|
|
public WonderkingContext([NotNull] DbContextOptions options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<Account> Accounts { get; set; }
|
|
public DbSet<Character> Characters { get; set; }
|
|
}
|