dotnet-object-storage/PoweredSoft.ObjectStorage.Core/IObjectStorageClient.cs

10 lines
185 B
C#
Raw Normal View History

2019-02-12 17:39:16 -05:00
using System;
namespace PoweredSoft.ObjectStorage.Core
{
public interface IObjectStorageClient
{
IObjectStorageCollection<TEntity> GetCollection<TEntity>();
}
}