Files
Moonlight/Moonlight/App/Models/Forms/UserDataModel.cs
Daniel Balk ecaab3a755 register
2023-04-12 18:01:18 +02:00

27 lines
571 B
C#

using System.ComponentModel.DataAnnotations;
namespace Moonlight.App.Models.Forms;
public class UserDataModel
{
[Required]
public string FirstName { get; set; } = "";
[Required]
public string LastName { get; set; } = "";
[Required]
public string Email { get; set; } = "";
[Required]
public string Address { get; set; } = "";
[Required]
public string City { get; set; } = "";
[Required]
public string State { get; set; } = "";
[Required]
public string Country { get; set; } = "";
}