Skip to content
Snippets Groups Projects
UserUpdateInfo.cs 214 B
Newer Older
namespace GatewayAPI.Models
{
    public class UserUpdateInfo
    {
        public string? Username { get; set; }
        public string? Email { get; set; }
        public string? Password { get; set; }
    }
}