using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.DataStore { /// /// Represents a key/value data store manager. /// /// public interface IDataStoreManager : IDisposable { /// /// Gets the data store collection by name. /// /// The name. /// IDataStoreCollection GetCollection(String name); /// /// Gets all the collection names. /// /// List GetCollectionNames(); } }