using System.ComponentModel;
using System.Diagnostics;
namespace MediaBrowser.Model.LiveTv
{
///
/// Class RecordingGroupDto.
///
[DebuggerDisplay("Name = {Name}, Count = {RecordingCount}")]
public class RecordingGroupDto : INotifyPropertyChanged
{
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the identifier.
///
/// The identifier.
public string Id { get; set; }
///
/// Gets or sets the recording count.
///
/// The recording count.
public int RecordingCount { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
}
}