aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEventArgs.cs
blob: 0b943c939648bb02aa372506888009cc5de4a293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#nullable disable

#pragma warning disable CS1591

using System;
using MediaBrowser.Model.LiveTv;

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

        public RecordingStatus NewStatus { get; set; }
    }
}