12 lines
253 B
C#
12 lines
253 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; }
|
|||
|
}
|
|||
|
}
|