mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
14 lines
299 B
C#
14 lines
299 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MTWireGuard.Application.Models
|
|
{
|
|
public class UserActivityUpdate
|
|
{
|
|
public int Id { get; set; }
|
|
public string LastHandshake { get; set; }
|
|
}
|
|
}
|