techgarage-ir.MTWireGuard/Application/Models/Requests/LoginRequest.cs
2024-01-25 20:36:44 +03:30

14 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MTWireGuard.Application.Models.Requests
{
public class LoginRequest
{
public string Username { get; set; }
public string Password { get; set; }
}
}