30 lines
702 B
C#
30 lines
702 B
C#
namespace JiShe.CollectBus.Protocol.Contracts.Models
|
|
{
|
|
public interface IProtocolInfo
|
|
{
|
|
/// <summary>
|
|
/// 协议名称
|
|
/// </summary>
|
|
string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 基础协议 376.1/645
|
|
/// </summary>
|
|
string BaseProtocol { get; set; }
|
|
|
|
/// <summary>
|
|
/// 协议类型 TCP/UDP
|
|
/// </summary>
|
|
string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 协议备注
|
|
/// </summary>
|
|
string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 型号正则匹配
|
|
/// </summary>
|
|
string RegularExpression { get; set; }
|
|
}
|
|
} |