blob: 6f0761e64b8663883d9912954101b49d4e39edb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
{
public class ChannelLatestMediaSearch
{
public string UserId { get; set; }
}
}
|