skyscraper8/skyscraper8/DvbSis/SisTdtContainer.cs
Fey 7ff359e52d
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m22s
Passthrough DVB-SIS DSACI, EIT, PAT and T2-Mi Timestamps to database.
2025-12-17 09:28:53 +01:00

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;
}
}
}