15 lines
479 B
C#
15 lines
479 B
C#
using Netina.Common.Models.Mapper;
|
|
using Netina.Domain.Entities.Products;
|
|
|
|
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; }
|
|
} |