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