using System;
namespace MediaBrowser.Controller.Persistence
{
///
/// Provides a base interface for all the repository interfaces
///
public interface IRepository : IDisposable
{
///
/// Gets the name of the repository
///
/// The name.
string Name { get; }
}
}