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