make sure items is defaulted to a new list

This commit is contained in:
Luke Pulverenti 2014-06-07 17:22:34 -04:00
parent 4f0e6f61e7
commit d2a0abb568

View File

@ -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>();
}
}
}