aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEventArgs.cs
blob: 99460a6862a84bf0a0f41c76591057580b36f8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using MediaBrowser.Model.LiveTv;

namespace MediaBrowser.Controller.LiveTv
{
    public class RecordingStatusChangedEventArgs : EventArgs
    {
        public string RecordingId { get; set; }

        public RecordingStatus NewStatus { get; set; }
    }
}