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.

26 lines
399 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer.Models
  5. {
  6. /// <summary>二维码纠错率。</summary>
  7. public enum QrCodeEccLevel
  8. {
  9. /// <summary>7%</summary>
  10. L = 7,
  11. /// <summary>15%</summary>
  12. M = 15,
  13. /// <summary>25%</summary>
  14. Q = 25,
  15. /// <summary>30%</summary>
  16. H = 30
  17. }
  18. }