summary refs log tree commit diff
path: root/extra/admin-api/Models/db-patches/00-use-stream-class.patch
blob: bc5dc487066f90159063aa5e8b3725d16164c8cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Spacebar.Models.Db/Contexts/SpacebarDbContext.cs b/Spacebar.Models.Db/Contexts/SpacebarDbContext.cs
index 48bd953b..831bddce 100644
--- a/Spacebar.Models.Db/Contexts/SpacebarDbContext.cs
+++ b/Spacebar.Models.Db/Contexts/SpacebarDbContext.cs
@@ -1,7 +1,6 @@
-using System;
-using System.Collections.Generic;
 using Microsoft.EntityFrameworkCore;
 using Spacebar.Models.Db.Models;
+using Stream = Spacebar.Models.Db.Models.Stream;

 namespace Spacebar.Models.Db.Contexts;