Made GSM library consistent with Firelance.

This commit is contained in:
2020-07-04 20:18:20 +01:00
parent 883cc34000
commit b6ce28a121
5 changed files with 36 additions and 13 deletions
@@ -0,0 +1,12 @@
using Microsoft.Data.Sqlite;
using System;
using System.Collections.Generic;
using System.Text;
namespace GSMParser.Inferfaces
{
public interface IGsmSqliteDBConnection
{
public SqliteConnection Database { get; }
}
}