jellyfin/MediaBrowser.Controller/LiveTv/TimerEventInfo.cs

19 lines
299 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.LiveTv
{
public class TimerEventInfo
{
public TimerEventInfo(string id)
{
Id = id;
}
public string Id { get; }
public Guid? ProgramId { get; set; }
2018-12-28 00:27:57 +01:00
}
}