using System.ComponentModel.DataAnnotations;
using WCS.Entity;
using WCS.Entity.Protocol.BCR;
namespace WCS.WorkEngineering.Protocol.BCR
{
///
/// 扫码头协议81
///
public interface IBCR81 : IProtocol
{
///
/// 内容
///
[StringLength(20)]
new string Content { get; set; }
}
}