15 lines
385 B
C#
15 lines
385 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
|
{
|
|
/// <summary>
|
|
/// 射线源命令抽象基类
|
|
/// 所有从主进程发往 Host 进程的请求均继承此类
|
|
/// </summary>
|
|
public abstract class RaySourceCommand
|
|
{
|
|
/// <summary>
|
|
/// 命令类型标识
|
|
/// </summary>
|
|
public abstract string CommandType { get; }
|
|
}
|
|
}
|