IBCR80.cs 327 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. namespace WCS.Protocol.SX.BCR
  3. {
  4. /// <summary>
  5. /// 扫码头协议80
  6. /// </summary>
  7. public interface IBCR80 : IProtocol
  8. {
  9. /// <summary>
  10. /// 内容
  11. /// </summary>
  12. [StringLength(130)]
  13. string Content { get; set; }
  14. }
  15. }