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;} }