jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs
2014-05-19 15:51:56 -04:00

14 lines
No EOL
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; }
}
}