aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelLatestMediaSearch.cs
blob: c6530814b9b4a769747d3b4c10a45a73fcaca3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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; }
    }
}