blob: 2340ca64655352e57e484ae79cc404ccb15160bb (
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; }
}
}
|