skyscraper8/skyscraper8/Dvb/Psi/TdtParserHandler.cs
2025-07-05 22:26:42 +02:00

14 lines
246 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper5.Dvb.Psi
{
public interface ITdtEventHandler
{
void OnTdtTime(DateTime utcTime);
}
}