public class RegistrationFormModel
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime DateTime { get; set; }
public string GeneralInformations { get; set; }
public int GenderId { get; set; }
public string BirthCertificateImageUrl { get; set; }
//Endereços
public string CEP { get; set; }
public string Street { get; set; }
public string Number { get; set; }
public string City { get; set; }
public string State { get; set; }
// Responsible Informations
public string ResponsibleName { get; set; }
public string PhoneNumber { get; set; }
public string Email { get; set; }
//Foreign Keys
public int StudyShift_id { get; set; }
public int Sport_id { get; set; }
//Navigation Properties
public GenderModel Gender { get; set; }
public StudyShiftModel StudyShift { get; set; }
public SportModel Sport { get; set; }
}