Api/NetinaShop.Domain/Dtos/LargDtos/ReviewLDto.cs

12 lines
406 B
C#

namespace NetinaShop.Domain.Dtos.LargDtos;
public class ReviewLDto : BaseDto<ReviewLDto,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 bool IsConfirmed { get; set; }
public Guid ProductId { get; set; }
public Guid UserId { get; set; }
}