mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 23:13:06 +03:00
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; }
|
|||
|
|
}
|
|||
|
|
}
|