From 710bdf8af387ec5d3174b622f7ab6d3fbfeacdcb Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Mon, 14 Aug 2023 14:34:24 +0200 Subject: [PATCH] chore: cleanup --- Server/DB/Documents/Account.cs | 2 -- Server/DB/WonderkingContext.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/Server/DB/Documents/Account.cs b/Server/DB/Documents/Account.cs index 746225f..d7f1fef 100644 --- a/Server/DB/Documents/Account.cs +++ b/Server/DB/Documents/Account.cs @@ -1,7 +1,5 @@ namespace Server.DB.Documents; -using Microsoft.EntityFrameworkCore; - public class Account { public Guid Id { get; set; } diff --git a/Server/DB/WonderkingContext.cs b/Server/DB/WonderkingContext.cs index 8a58af5..a8d1934 100644 --- a/Server/DB/WonderkingContext.cs +++ b/Server/DB/WonderkingContext.cs @@ -1,11 +1,9 @@ namespace Server.DB; -using System.Data.Common; using Documents; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; -using Npgsql; public class WonderkingContext : DbContext {