jellyfin/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs

14 lines
285 B
C#
Raw Normal View History

2018-12-27 23:27:57 +00:00
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; }
}
}