mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 04:03:39 +01:00
13 lines
236 B
C#
13 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; }
|
|
}
|
|
}
|