Database Migration, Repositories, Automapper, Logger, StaticFiles
This commit is contained in:
2024-04-26 02:34:47 +05:30
parent 234912badb
commit 4c6f9a4ba8
70 changed files with 10151 additions and 32 deletions
+35
View File
@@ -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>();
}
}