1. AES Encryption/Decryption Tool

2. Encrypted Connection string
3. Added API Security using ApiKey
This commit is contained in:
2024-04-28 13:22:57 +05:30
parent 4c6f9a4ba8
commit 21e02ab3ca
14 changed files with 308 additions and 20 deletions
+8
View File
@@ -31,5 +31,13 @@
public ICollection<HobbyDto> Hobbies { get; set; } = new List<HobbyDto>();
public ICollection<ProjectDto> Projects { get; set; } = new List<ProjectDto>();
public ICollection<string> ProjectsCategories
{
get
{
return Projects.Select(p => p.Category).Distinct().ToList();
}
}
}
}