v2rayN/v2rayN/ServiceLib/Models/ServerStatItem.cs
2024-08-19 18:15:54 +08:00

39 lines
No EOL
564 B
C#

using SQLite;
namespace ServiceLib.Models
{
[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;
}
}
}