jellyfin/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs

14 lines
285 B
C#
Raw Normal View History

2014-05-12 01:02:28 +02:00
namespace MediaBrowser.Controller.Channels
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
2014-06-06 19:14:02 +02:00
public string UserId { get; set; }
2014-05-12 01:02:28 +02:00
}
2014-06-10 19:36:06 +02:00
public class ChannelLatestMediaSearch
{
public string UserId { get; set; }
}
2014-05-12 01:02:28 +02:00
}