jellyfin/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEventArgs.cs

17 lines
321 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.LiveTv;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.LiveTv
{
public class RecordingStatusChangedEventArgs : EventArgs
{
public string RecordingId { get; set; }
public RecordingStatus NewStatus { get; set; }
}
}