16 lines
349 B
C#
16 lines
349 B
C#
// <copyright file="ChannelLatestMediaSearch.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class ChannelLatestMediaSearch
|
|
{
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|