2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class BlogCategorySDto : BaseDto<BlogCategorySDto , BlogCategory>
|
|
|
|
|
|
{
|
2024-01-02 19:08:39 +03:30
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-04-22 13:33:39 +03:30
|
|
|
|
public int BlogCount { get; set; }
|
2024-01-02 19:08:39 +03:30
|
|
|
|
public string Description { get; set; } = string.Empty;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|