sledgemapper/Sledgemapper.Api/Models copy/Users/UpdateModel.cs

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; }
}
}