mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 21:21:34 +00:00
22 lines
407 B
C#
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;
|
|
}
|
|
}
|
|
}
|