You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
279 B

  1. namespace UHFHelper
  2. {
  3. public class Resultoutput
  4. {
  5. public bool Res { get; set; }
  6. public string? ResMes { get; set; }
  7. }
  8. /// <summary>
  9. /// 蜂鸣开关
  10. /// </summary>
  11. public enum Beep
  12. {
  13. open=0,
  14. close=1,
  15. }
  16. }