mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 22:29:24 +02:00
16 lines
317 B
C#
16 lines
317 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MTWireGuard.Application.Models
|
|||
|
{
|
|||
|
public class UsageObject
|
|||
|
{
|
|||
|
public string Id { get; set; }
|
|||
|
public int RX { get; set; }
|
|||
|
public int TX { get; set; }
|
|||
|
}
|
|||
|
}
|