diff options
| -rw-r--r-- | MediaBrowser.Controller/Channels/ChannelItemResult.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelItemResult.cs b/MediaBrowser.Controller/Channels/ChannelItemResult.cs index 3ec5b7c24..f88881811 100644 --- a/MediaBrowser.Controller/Channels/ChannelItemResult.cs +++ b/MediaBrowser.Controller/Channels/ChannelItemResult.cs @@ -7,5 +7,10 @@ namespace MediaBrowser.Controller.Channels public List<ChannelItemInfo> Items { get; set; } public int? TotalRecordCount { get; set; } + + public ChannelItemResult() + { + Items = new List<ChannelItemInfo>(); + } } }
\ No newline at end of file |
