Api/Netina.Domain/Dtos/SmallDtos/SpecificationSDto.cs

12 lines
404 B
C#

namespace Netina.Domain.Dtos.SmallDtos;
public class SpecificationSDto : BaseDto<SpecificationSDto,Specification>
{
public string Title { get; set; } = string.Empty;
public string Detail { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
public bool IsFeature { get; set; }
public Guid ProductId { get; set; }
public Guid ParentId { get; set; }
}