dotnet-object-storage/PoweredSoft.ObjectStorage.Core/IObjectStorageClient.cs
David Lebee b789b367c2 initial
2019-02-12 17:39:16 -05:00

10 lines
185 B
C#

using System;
namespace PoweredSoft.ObjectStorage.Core
{
public interface IObjectStorageClient
{
IObjectStorageCollection<TEntity> GetCollection<TEntity>();
}
}