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
26 lines
399 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Models
|
|
{
|
|
|
|
/// <summary>二维码纠错率。</summary>
|
|
public enum QrCodeEccLevel
|
|
{
|
|
|
|
/// <summary>7%</summary>
|
|
L = 7,
|
|
|
|
/// <summary>15%</summary>
|
|
M = 15,
|
|
|
|
/// <summary>25%</summary>
|
|
Q = 25,
|
|
|
|
/// <summary>30%</summary>
|
|
H = 30
|
|
|
|
}
|
|
|
|
}
|
|
|