mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
13 lines
273 B
C#
13 lines
273 B
C#
|
using MediaBrowser.Model.LiveTv;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.LiveTv
|
|||
|
{
|
|||
|
public class RecordingStatusChangedEventArgs : EventArgs
|
|||
|
{
|
|||
|
public string RecordingId { get; set; }
|
|||
|
|
|||
|
public RecordingStatus NewStatus { get; set; }
|
|||
|
}
|
|||
|
}
|