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

#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; }
    }
}