Files
kami_itunes_june/AppleBatch_June.Model/VerificationCodeConfig.cs
2024-07-22 00:43:14 +08:00

22 lines
407 B
C#

namespace AppleBatch_June.Model
{
public class VerificationCodeConfig
{
public string WinTitle { get; set; }
public string content { get; set; }
public string tipMag { get; set; }
public int verifiLength { get; set; }
public VerificationCodeConfig()
{
WinTitle = "需要输入双重验证码";
tipMag = "请输入显示的验证码";
content = "--";
verifiLength = 6;
}
}
}