jellyfin/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEventArgs.cs

13 lines
273 B
C#
Raw Normal View History

2018-12-28 00:27:57 +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; }
}
}