ChannelSearchInfo.cs 236 B

12345678910111213
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Controller.Channels
  4. {
  5. public class ChannelSearchInfo
  6. {
  7. public string SearchTerm { get; set; }
  8. public string UserId { get; set; }
  9. }
  10. }