using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace WCS.Protocol.SX.BCR
{
[Description("扫码")]
///
/// 扫码头协议81
///
public interface IBCR81 : IProtocol
{
[Description("扫码值")]
///
/// 内容
///
[StringLength(50)]
string Content { get; set; }
}
}