11 lines
366 B
C#
11 lines
366 B
C#
|
|
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
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; }
|
|||
|
|
}
|