v2rayN/v2rayN/v2rayN/Model/ServerStatItem.cs
2024-02-19 13:13:36 +03:30

39 lines
No EOL
559 B
C#

using SQLite;
namespace v2rayN.Model
{
[Serializable]
public class ServerStatItem
{
[PrimaryKey]
public string indexId
{
get; set;
}
public long totalUp
{
get; set;
}
public long totalDown
{
get; set;
}
public long todayUp
{
get; set;
}
public long todayDown
{
get; set;
}
public long dateNow
{
get; set;
}
}
}