TimerEventInfo.cs 335 B

123456789101112131415161718192021
  1. #nullable disable
  2. #nullable enable
  3. #pragma warning disable CS1591
  4. using System;
  5. namespace MediaBrowser.Controller.LiveTv
  6. {
  7. public class TimerEventInfo
  8. {
  9. public TimerEventInfo(string id)
  10. {
  11. Id = id;
  12. }
  13. public string Id { get; }
  14. public Guid? ProgramId { get; set; }
  15. }
  16. }