LANCommander/LANCommander.SDK/Models/RegistrationRequest.cs
2025-01-05 21:09:57 -06:00

13 lines
305 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class RegistrationRequest
{
public string UserName { get; set; }
public string Password { get; set; }
public string PasswordConfirmation { get; set; }
}
}