Api/NetinaShop.Domain/Dtos/SmallDtos/CategorySDto.cs

8 lines
264 B
C#

namespace NetinaShop.Domain.Dtos.SmallDtos;
public class CategorySDto : BaseDto<CategorySDto , Category>
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public Guid ParentId { get; set; }
}