27 lines
616 B
C#
27 lines
616 B
C#
namespace PortBlog.API.Models
|
|
{
|
|
public class CandidateDto
|
|
{
|
|
public int CandidateId { get; set; }
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
public string DisplayName {
|
|
get
|
|
{
|
|
return FirstName + " " + LastName;
|
|
}
|
|
}
|
|
|
|
public string Dob { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
public string? Address { get; set; }
|
|
}
|
|
}
|