2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class ReviewSDto : BaseDto<ReviewSDto, Review>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
public string Comment { get; set; } = string.Empty;
|
|
|
|
|
|
public float Rate { get; set; }
|
|
|
|
|
|
public bool IsBuyer { get; set; }
|
|
|
|
|
|
public Guid ProductId { get; set; }
|
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
}
|