2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
|
|
{
|
|
|
|
public static class LibraryManagerExtensions
|
|
|
|
{
|
|
|
|
public static BaseItem GetItemById(this ILibraryManager manager, string id)
|
|
|
|
{
|
|
|
|
return manager.GetItemById(new Guid(id));
|
|
|
|
}
|
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|