mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
29 lines
490 B
C#
29 lines
490 B
C#
using System;
|
|
|
|
namespace AppleBatch_June.Model
|
|
{
|
|
public class GetIpProxyModel
|
|
{
|
|
public class ProxyModel
|
|
{
|
|
public string proxyIp { get; set; }
|
|
|
|
public DateTime expireTime { get; set; }
|
|
}
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
public ProxyModel[] Data { get; set; }
|
|
|
|
public int serverIndex { get; set; }
|
|
|
|
public string extend { get; set; }
|
|
|
|
public string authenUserInfo { get; set; }
|
|
|
|
public string platformName { get; set; }
|
|
}
|
|
}
|