8 lines
308 B
C#
8 lines
308 B
C#
namespace NetinaShop.Domain.Dtos.LargDtos;
|
|
|
|
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();
|
|
} |