mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-14 18:43:00 -05:00
14 lines
305 B
C#
14 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class ChannelItemResult
|
|
{
|
|
public List<ChannelItemInfo> Items { get; set; }
|
|
|
|
public TimeSpan CacheLength { get; set; }
|
|
|
|
public int? TotalRecordCount { get; set; }
|
|
}
|
|
} |