mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
19 lines
333 B
C#
19 lines
333 B
C#
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; }
|
|
}
|