| 4 | namespace QuestionService.DTOs; |
| 5 | |
| 6 | public record CreateQuestionDto( |
| 7 | [Required]string Title, |
| 8 | [Required]string Content, |
| 9 | [Required][TagListValidator(1, 5)]List<string> Tags); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…