9 lines
320 B
C#
9 lines
320 B
C#
namespace HamyanEdalat.Domain.Dtos.LargDto;
|
|
|
|
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; internal set; } = new();
|
|
} |