using System;
namespace MediaBrowser.Controller.Entities
{
///
/// Interface ILibraryItem
///
public interface ILibraryItem
{
///
/// Gets the name.
///
/// The name.
string Name { get; }
///
/// Gets the id.
///
/// The id.
Guid Id { get; }
///
/// Gets the path.
///
/// The path.
string Path { get; }
}
}