namespace backend.DTOs { public class CreateReviewRequest { public string Title { get; set; } public string Description { get; set; } public int Stars { get; set; } // 1-5 } }