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
+9
View File
@@ -0,0 +1,9 @@
namespace PortBlog.API.Models
{
public class AboutDto
{
public string About { get; set; } = string.Empty;
public ICollection<HobbyDto> Hobbies { get; set; } = new List<HobbyDto>();
}
}