20 lines
423 B
C#
20 lines
423 B
C#
using skyscraper5.Dvb.Psi;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace skyscraper8.DvbSis
|
|
{
|
|
public class SisTdtContainer : ITdtEventHandler
|
|
{
|
|
public DateTime? UtcTime { get; private set; }
|
|
|
|
public void OnTdtTime(DateTime utcTime)
|
|
{
|
|
this.UtcTime = utcTime;
|
|
}
|
|
}
|
|
}
|