13 lines
180 B
C#
13 lines
180 B
C#
using LiteDB;
|
|
|
|
|
|
namespace skydiveLogs_api.Data.Interface
|
|
{
|
|
public interface IDataProvider
|
|
{
|
|
LiteCollection<T> GetCollection<T>();
|
|
|
|
void Close();
|
|
}
|
|
}
|