techgarage-ir.MTWireGuard/Application/Models/LastKnownTraffic.cs
2024-01-25 20:36:44 +03:30

22 lines
528 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MTWireGuard.Application.Models
{
public class LastKnownTraffic
{
[Key]
public int UserID { get; set; }
[DefaultValue(0)]
public int RX { get; set; }
[DefaultValue(0)]
public int TX { get; set; }
public DateTime CreationTime { get; set; }
}
}