Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs

9 lines
187 B
C#
Raw Normal View History

2014-05-11 19:02:28 -04:00
namespace MediaBrowser.Controller.Channels
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
2014-06-06 13:14:02 -04:00
public string UserId { get; set; }
2014-05-11 19:02:28 -04:00
}
}