sledgemapper/Sledgemapper.Api/Models/UpdateModel.cs
2021-02-11 23:47:32 +00:00

10 lines
No EOL
259 B
C#

namespace Sledgemapper.Models.Users
{
public class UpdateModel
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}