namespace UIShare.PubEvent
{
///
/// DBC 自动加载时找不到文件事件。
/// 参数:(通道号, 文件路径)
///
public class DBCFileNotFoundEvent : PubSubEvent
{
}
public class DBCFileNotFoundArgs
{
public int Channel { get; set; }
public string FilePath { get; set; } = string.Empty;
public string Scope { get; set; } = string.Empty;
}
}