Bitwarden-app-android-iphon.../src/App/Abstractions/Services/ISqlService.cs

10 lines
140 B
C#

using SQLite;
namespace Bit.App.Abstractions
{
public interface ISqlService
{
SQLiteConnection GetConnection();
}
}