10 lines
218 B
C#
10 lines
218 B
C#
namespace PortBlog.API.Models
|
|
{
|
|
public class AboutDto
|
|
{
|
|
public string About { get; set; } = string.Empty;
|
|
|
|
public ICollection<HobbyDto> Hobbies { get; set; } = new List<HobbyDto>();
|
|
}
|
|
}
|