jellyfin/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs

34 lines
927 B
C#
Raw Normal View History

2014-01-17 19:23:00 +01:00
using System.ComponentModel;
2014-01-18 11:03:47 +01:00
using System.Diagnostics;
2014-06-29 21:59:52 +02:00
using MediaBrowser.Model.Extensions;
2014-01-17 19:23:00 +01:00
2013-12-28 22:37:01 +01:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class RecordingGroupDto.
/// </summary>
2014-01-18 11:03:47 +01:00
[DebuggerDisplay("Name = {Name}, Count = {RecordingCount}")]
2014-06-29 21:59:52 +02:00
public class RecordingGroupDto : IHasPropertyChangedEvent
2013-12-28 22:37:01 +01:00
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
/// <summary>
/// Gets or sets the recording count.
/// </summary>
/// <value>The recording count.</value>
public int RecordingCount { get; set; }
2014-01-17 19:23:00 +01:00
public event PropertyChangedEventHandler PropertyChanged;
2013-12-28 22:37:01 +01:00
}
}