diff --git a/csharp/App/Backend/Database/DbConnection.cs b/csharp/App/Backend/Database/DbConnection.cs new file mode 100644 index 000000000..4676ca498 --- /dev/null +++ b/csharp/App/Backend/Database/DbConnection.cs @@ -0,0 +1,18 @@ +using InnovEnergy.App.Backend.Model; +using SQLite; + +namespace InnovEnergy.App.Backend.Database; + + +// TODO ? +public struct DbConnection +{ + public DbConnection(SQLiteConnection connection, User caller) + { + Connection = connection; + Caller = caller; + } + + public SQLiteConnection Connection { get;} + public User Caller { get;} +} \ No newline at end of file