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