using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTS.Serialization.IRIGCH10.Packets { public interface ISecondaryTimeFormatHeader { int NanoSeconds { get; } int Seconds { get; } ushort Reserved { get; } ushort CheckSum { get; } DateTime LocalTime { get; } } }