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

44 lines
719 B
C#

using System.Net;
namespace AppleBatch_June.Model
{
public class AppleUserInfo
{
public CookieContainer PcookieContainer = new CookieContainer();
private string userAgent;
public string AppleId { get; set; }
public string ApplePwd { get; set; }
public string AppleQt1 { get; set; }
public string AppleQt2 { get; set; }
public string AppleQt3 { get; set; }
public string UserAgent
{
get
{
if (!string.IsNullOrEmpty(userAgent))
{
return userAgent;
}
userAgent = AppleUtlis.getAppleWenUserAgent();
return userAgent;
}
set
{
userAgent = value;
}
}
public string Birthday { get; set; }
public string Area { get; set; } = string.Empty;
}
}