jellyfin/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-28 00:27:57 +01:00
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
public string UserId { get; set; }
}
}