api/HamyanEdalat.Domain/Dtos/LargDto/BlogCategoryLDto.cs

9 lines
320 B
C#
Raw Normal View History

2024-03-09 19:53:01 +03:30
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();
}