jellyfin/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEventArgs.cs

13 lines
273 B
C#
Raw Normal View History

2014-01-15 06:38:08 +01:00
using MediaBrowser.Model.LiveTv;
using System;
namespace MediaBrowser.Controller.LiveTv
{
public class RecordingStatusChangedEventArgs : EventArgs
{
public string RecordingId { get; set; }
public RecordingStatus NewStatus { get; set; }
}
}