namespace backend.DTOs { public class CreateToDoItemRequest { public string Title { get; set; } public string Description { get; set; } public int ReviewId { get; set; } public int Priority { get; set; } } }