mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-25 10:47:51 +00:00
10 lines
314 B
C#
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; }
|
|
}
|
|
|
|
} |