This commit is contained in:
2025-02-02 13:26:44 +02:00
parent d2a32d35f4
commit 2e8c61f3e3
24 changed files with 589 additions and 565 deletions

View File

@@ -2,7 +2,7 @@
{
public class QuestionDto
{
public string Id { get; set; }
public string Id { get; set; } = Guid.NewGuid().ToString();
public string Content { get; set; }
public string SurveyId { get; set; }
public List<ChoiceDto> Choices { get; set; }