mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
22 lines
528 B
C#
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; }
|
|
}
|
|
}
|