IRepository.cs 386 B

12345678910111213141516
  1. using System;
  2. namespace MediaBrowser.Controller.Persistence
  3. {
  4. /// <summary>
  5. /// Provides a base interface for all the repository interfaces.
  6. /// </summary>
  7. public interface IRepository : IDisposable
  8. {
  9. /// <summary>
  10. /// Gets the name of the repository.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. string Name { get; }
  14. }
  15. }