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