mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 01:12:58 +00:00
15 lines
343 B
C#
15 lines
343 B
C#
#nullable disable
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
/// <summary>
|
|
/// The request for a latest media search in a channel.
|
|
/// </summary>
|
|
public class ChannelLatestMediaSearch
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the user id.
|
|
/// </summary>
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|