aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/TimerEventInfo.cs
blob: 1b8f41db69aa1319cb0b587c49aacf8a033883ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#nullable enable
#pragma warning disable CS1591

using System;

namespace MediaBrowser.Controller.LiveTv
{
    public class TimerEventInfo
    {
        public TimerEventInfo(string id)
        {
            Id = id;
        }

        public string Id { get; }

        public Guid? ProgramId { get; set; }
    }
}