techgarage-ir.MTWireGuard/Application/Models/UsageObject.cs

16 lines
317 B
C#
Raw Normal View History

2024-01-25 20:36:44 +03:30
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; }
}
}