RecordingGroupDto.cs 927 B

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