mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
9 lines
269 B
C#
9 lines
269 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; }
|
|
}
|
|
|
|
} |