14 lines
442 B
C#
14 lines
442 B
C#
namespace Enciphered.Blazor.UIComponents.Demo;
|
|
|
|
public class ContactFormModel
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Email { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
public int? Age { get; set; }
|
|
public DateOnly? Birthdate { get; set; }
|
|
public TimeOnly? Preferredtime { get; set; }
|
|
public DateTime? Appointment { get; set; }
|
|
public string Confirmation { get; set; } = "";
|
|
}
|