1 2 3 4 5 6 7 8 9 10 11 12
using MediaBrowser.Model.LiveTv; using System; namespace MediaBrowser.Controller.LiveTv { public class RecordingStatusChangedEventArgs : EventArgs { public string RecordingId { get; set; } public RecordingStatus NewStatus { get; set; } } }