2023-07-29 10:19:42 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Hncore.Pass.Vpn.Model
|
|
|
|
|
|
{
|
|
|
|
|
|
public class OriginAccountModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
public string User { get; set; }
|
|
|
|
|
|
public string Account { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Pwd { get; set; }
|
|
|
|
|
|
public string AccountType { get; set; }
|
|
|
|
|
|
public string Package { get; set; }
|
|
|
|
|
|
public string ConnectCount { get; set; }
|
|
|
|
|
|
public string RegistTime { get; set; }
|
|
|
|
|
|
public string EndTime { get; set; }
|
|
|
|
|
|
public string RestTime { get; set; }
|
|
|
|
|
|
public string Amount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string IsActive { get; set; }
|
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime RealEndTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int OnLine { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
|
|
public string LoginTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string LoginServer { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|