33 lines
752 B
C#
33 lines
752 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace skyscraper8.EPGCollectorPort.SkyscraperSide.MediaHighway2
|
|
{
|
|
internal class Mhw2EventBinder
|
|
{
|
|
public int EventId { get; }
|
|
|
|
public Mhw2EventBinder(int eventId)
|
|
{
|
|
EventId = eventId;
|
|
}
|
|
|
|
public string EventName { get; set; }
|
|
public int CategoryID { get; set; }
|
|
public int ChannelID { get; set; }
|
|
public TimeSpan Duration { get; set; }
|
|
public int MainCategory { get; set; }
|
|
public DateTime StartTime { get; set; }
|
|
public int SubCategory { get; set; }
|
|
|
|
public string ShortDescription { get; set; }
|
|
public bool ShortDescriptionSeen { get; set; }
|
|
public bool TitleDataSeen { get; set; }
|
|
|
|
|
|
}
|
|
}
|