18 lines
353 B
C#
18 lines
353 B
C#
|
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;}
|
||
|
}
|