aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence/IRepository.cs
blob: 42f285076284cb1ae4accebf65b1b6a7cc7b52e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

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