mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-15 20:58:07 +00:00
39 lines
No EOL
564 B
C#
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;
|
|
}
|
|
}
|
|
} |