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

32 lines
565 B
C#

using System;
namespace AppleBatch_June.Model
{
public class AppleiCloundLogin
{
public string timeCheck = DateTime.Now.ToString("yyMMddHHmm");
public int timeCheckCount;
public string StdndbyKeyGuid { get; set; } = "";
public DateTime LoginTime { get; } = DateTime.Now;
public string account { get; set; }
public string pwd { get; set; }
public string dsid { get; set; }
public string mmeAuthToken { get; set; }
public string userAgent { get; set; }
public string clientInfo { get; set; }
public string Area { get; set; }
}
}