namespace UIShare.PubEvent { /// /// DBC 加载完成事件:通知订阅者某个通道的 DBC 已加载,可以刷新信号列表。 /// public class DBCLoadedEvent : PubSubEvent { } public class DBCLoadedArgs { public uint Channel { get; set; } public string Scope { get; set; } = string.Empty; } }