2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|