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

21 lines
342 B
C#

using System;
namespace AppleBatch_June.Model
{
public class ProxyIpModel
{
public string prixyIp { get; set; }
public DateTime? expirationTime { get; set; }
public int type { get; set; }
public string tunnelProxy { get; set; }
public int userCount { get; set; }
public DateTime upTime { get; set; } = DateTime.Now;
}
}