namespace Stylist.Data.Models.DTOs.Review { public record ReviewSalonPageDto { public int Id { get; set; } public string? Comment { get; set; } public double Rating { get; set; } public UserReviewDto? User { get; set; } } }