jellyfin/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs

14 lines
285 B
C#
Raw Normal View History

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