Files
podnoms/server/Models/ViewModels/RegistrationViewModel.cs
2018-04-22 14:05:55 +01:00

10 lines
314 B
C#

namespace PodNoms.Api.Models.ViewModels {
public class RegistrationViewModel {
public string Email { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Location { get; set; }
}
}