mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
17 lines
387 B
C#
17 lines
387 B
C#
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; }
|
|
}
|
|
}
|