using System; namespace ZB.MOM.WW.OtOpcUa.Host.Historian { /// /// SDK-free representation of a Historian event record exposed by the historian plugin. /// Prevents ArchestrA types from leaking into the Host assembly. /// public sealed class HistorianEventDto { public Guid Id { get; set; } public string? Source { get; set; } public DateTime EventTime { get; set; } public DateTime ReceivedTime { get; set; } public string? DisplayText { get; set; } public ushort Severity { get; set; } } }