jellyfin/MediaBrowser.Controller/LiveTv/TimerEventInfo.cs

20 lines
316 B
C#
Raw Normal View History

#nullable enable
#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
}
}