mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
rename album art property
This commit is contained in:
@@ -7,8 +7,7 @@ using System.Threading;
|
||||
|
||||
namespace MediaBrowser.Api
|
||||
{
|
||||
[Route("/Channels", "GET")]
|
||||
[Api(("Gets available channels"))]
|
||||
[Route("/Channels", "GET", Summary = "Gets available channels")]
|
||||
public class GetChannels : IReturn<QueryResult<BaseItemDto>>
|
||||
{
|
||||
public string UserId { get; set; }
|
||||
@@ -18,8 +17,7 @@ namespace MediaBrowser.Api
|
||||
public int? Limit { get; set; }
|
||||
}
|
||||
|
||||
[Route("/Channels/{Id}/Items", "GET")]
|
||||
[Api(("Gets channel items"))]
|
||||
[Route("/Channels/{Id}/Items", "GET", Summary = "Gets channel items")]
|
||||
public class GetChannelItems : IReturn<QueryResult<BaseItemDto>>
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user