blob: 56bf1dd5a88303504e91c122b93e75053f4029b9 (
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; }
}
}
|