jellyfin/MediaBrowser.Controller/Channels/ChannelLatestMediaSearch.cs

12 lines
198 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
{
public class ChannelLatestMediaSearch
{
public string UserId { get; set; }
}
2021-12-24 12:28:27 -05:00
}