11 lines
401 B
C#
11 lines
401 B
C#
namespace Netina.Domain.Dtos.SmallDtos;
|
|
|
|
public class BlogCategorySDto : BaseDto<BlogCategorySDto , BlogCategory>
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public int BlogCount { get; set; }
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Slug { get; set; } = string.Empty;
|
|
public bool IsMain { get; set; }
|
|
public Guid ParentId { get; set; }
|
|
} |