Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelItemResult.cs

14 lines
305 B
C#
Raw Normal View History

2014-05-11 19:02:28 -04:00
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; }
2014-05-11 19:02:28 -04:00
}
}