RecordingGroupDto.cs 888 B

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