api performance changes

This commit is contained in:
2024-04-29 00:19:37 +05:30
parent 21e02ab3ca
commit b3cb7b351f
10 changed files with 212 additions and 3 deletions
@@ -0,0 +1,11 @@
namespace PortBlog.API.Models
{
public class CandidateSocialLinksDto
{
public string Title { get; set; } = string.Empty;
public CandidateDto? Candidate { get; set; }
public SocialLinksDto? SocialLinks { get; set; }
}
}