2
0

RecordingGroupDto.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using MediaBrowser.Model.Dto;
  2. using MediaBrowser.Model.Extensions;
  3. using System.ComponentModel;
  4. using System.Diagnostics;
  5. namespace MediaBrowser.Model.LiveTv
  6. {
  7. /// <summary>
  8. /// Class RecordingGroupDto.
  9. /// </summary>
  10. [DebuggerDisplay("Name = {Name}, Count = {RecordingCount}")]
  11. public class RecordingGroupDto : IHasPropertyChangedEvent, IHasServerId
  12. {
  13. /// <summary>
  14. /// Gets or sets the server identifier.
  15. /// </summary>
  16. /// <value>The server identifier.</value>
  17. public string ServerId { get; set; }
  18. /// <summary>
  19. /// Gets or sets the name.
  20. /// </summary>
  21. /// <value>The name.</value>
  22. public string Name { get; set; }
  23. /// <summary>
  24. /// Gets or sets the identifier.
  25. /// </summary>
  26. /// <value>The identifier.</value>
  27. public string Id { get; set; }
  28. /// <summary>
  29. /// Gets or sets the recording count.
  30. /// </summary>
  31. /// <value>The recording count.</value>
  32. public int RecordingCount { get; set; }
  33. public event PropertyChangedEventHandler PropertyChanged;
  34. }
  35. }