7 lines
255 B
C#
7 lines
255 B
C#
|
|
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class BlogCategorySDto : BaseDto<BlogCategorySDto , BlogCategory>
|
|||
|
|
{
|
|||
|
|
public string Name { get; internal set; } = string.Empty;
|
|||
|
|
public string Description { get; internal set; } = string.Empty;
|
|||
|
|
}
|