Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs
Andrew Rabert a86b71899e Add GPL modules
2018-12-27 18:27:57 -05:00

14 lines
285 B
C#

namespace MediaBrowser.Controller.Channels
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
public string UserId { get; set; }
}
public class ChannelLatestMediaSearch
{
public string UserId { get; set; }
}
}