IBCR81.cs 418 B

12345678910111213141516171819
  1. using System.ComponentModel;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace WCS.Protocol.SX.BCR
  4. {
  5. [Description("扫码")]
  6. /// <summary>
  7. /// 扫码头协议81
  8. /// </summary>
  9. public interface IBCR81 : IProtocol
  10. {
  11. [Description("扫码值")]
  12. /// <summary>
  13. /// 内容
  14. /// </summary>
  15. [StringLength(50)]
  16. string Content { get; set; }
  17. }
  18. }