mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
14 lines
285 B
C#
14 lines
285 B
C#
|
|
namespace MediaBrowser.Controller.Channels
|
|||
|
|
{
|
|||
|
|
public class ChannelSearchInfo
|
|||
|
|
{
|
|||
|
|
public string SearchTerm { get; set; }
|
|||
|
|
|
|||
|
|
public string UserId { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class ChannelLatestMediaSearch
|
|||
|
|
{
|
|||
|
|
public string UserId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|