using System; using System.Collections.Generic; using System.Text; namespace Apewer.Models { /// 二维码纠错率。 public enum QrCodeEccLevel { /// 7% L = 7, /// 15% M = 15, /// 25% Q = 25, /// 30% H = 30 } }