jellyfin/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs

15 lines
283 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.Channels
2018-12-27 18:27:57 -05:00
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
public string UserId { get; set; }
}
public class ChannelLatestMediaSearch
{
public string UserId { get; set; }
}
}