namespace backend.DTOs { public class ReviewResponse { public int Id { get; set; } public string Title { get; set; } public string Description { get; set; } public int Stars { get; set; } // 1-5 public DateTime CreatedAt { get; set; } public string Username { get; set; } } }