21 lines
396 B
C#
21 lines
396 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; }
|
|
}
|
|
} |