12 lines
408 B
C#
12 lines
408 B
C#
namespace NetinaShop.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; }
|
|
} |