Changes:
Database Migration, Repositories, Automapper, Logger, StaticFiles
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
namespace PortBlog.API.Models
|
||||
{
|
||||
public class ResumeDto
|
||||
{
|
||||
public int ResumeId { get; set; }
|
||||
|
||||
public string Title { get; set; } = string.Empty;
|
||||
|
||||
public string About { get; set; } = string.Empty;
|
||||
|
||||
public CandidateDto? Candidate { get; set; }
|
||||
|
||||
public SocialLinksDto? SocialLinks { get; set; }
|
||||
|
||||
public ICollection<PostDto> Posts
|
||||
{
|
||||
get
|
||||
{
|
||||
return SocialLinks?.Posts ?? new List<PostDto>();
|
||||
}
|
||||
}
|
||||
|
||||
public ICollection<AcademicDto> Academics { get; set; } = new List<AcademicDto>();
|
||||
|
||||
public ICollection<SkillDto> Skills { get; set; } = new List<SkillDto>();
|
||||
|
||||
public ICollection<ExperienceDto> Experiences { get; set; } = new List<ExperienceDto>();
|
||||
|
||||
public ICollection<CertificationDto> Certifications { get; set; } = new List<CertificationDto>();
|
||||
|
||||
public ICollection<HobbyDto> Hobbies { get; set; } = new List<HobbyDto>();
|
||||
|
||||
public ICollection<ProjectDto> Projects { get; set; } = new List<ProjectDto>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user