jellyfin-server/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs

14 lines
236 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
2018-12-27 23:27:57 +00:00
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
public string UserId { get; set; }
}
}