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