aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/TimerEventInfo.cs
blob: 0e1a054754697af9e0684f678b002fde30746c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MediaBrowser.Controller.LiveTv
{
    public class TimerEventInfo
    {
        public string Id { get; set; }
        public string ProgramId { get; set; }
    }
}