Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs
2021-05-11 13:55:46 +02:00

14 lines
236 B
C#

#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
public string UserId { get; set; }
}
}