mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
21 lines
545 B
C#
21 lines
545 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MTWireGuard.Application.Models
|
|
{
|
|
public class DataUsage
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int Id { get; set; }
|
|
public int UserID { get; set; }
|
|
public int RX { get; set; }
|
|
public int TX { get; set; }
|
|
public bool UserReset { get; set; }
|
|
public string? ResetNotes { get; set; }
|
|
public DateTime CreationTime { get; set; }
|
|
}
|
|
}
|