using Review = Netina.Domain.Entities.Reviews.Review; namespace Netina.Domain.Dtos.LargDtos; public class ReviewLDto : BaseDto { 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; } }