20 lines
513 B
C#
20 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Future.Contract
|
|
{
|
|
/// <summary>
|
|
/// 所有信令指令的公共基类,需要命名信道
|
|
/// </summary>
|
|
public abstract class SignalInstructBase //: FutureInstruct
|
|
{
|
|
/// <summary>
|
|
/// 命名信道:可以通过名称从上下文中获得指定的通信信道引用
|
|
/// </summary>
|
|
public string ChannelName { get; set; }
|
|
}
|
|
}
|