2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.LargDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class BlogCategoryLDto : BaseDto<BlogCategoryLDto, BlogCategory>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; internal set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; internal set; } = string.Empty;
|
|
|
|
|
|
public List<BlogSDto> Blogs { get; set; } = new();
|
|
|
|
|
|
}
|