12 lines
240 B
C#
12 lines
240 B
C#
using Microsoft.Data.Sqlite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GSMParser.Inferfaces
|
|
{
|
|
public interface IGsmSqliteDBConnection
|
|
{
|
|
public SqliteConnection Database { get; }
|
|
}
|
|
} |