Merge branch 'unstable' into 'main'

add createdBy in Survey for test

See merge request internship-2025/survey-webapp/surveylib!10
This commit is contained in:
Вячеслав 2025-04-18 18:52:48 +00:00
commit 2de1d39e7b

View file

@ -6,6 +6,8 @@ public class Survey
public string Title { get; set; } public string Title { get; set; }
public string Description { get; set; } public string Description { get; set; }
public int? CreatedBy { get; set; }
public ICollection<QuestionBase> Questions { get; set; } public ICollection<QuestionBase> Questions { get; set; }
public ICollection<Completion> Completions { get; set; } public ICollection<Completion> Completions { get; set; }
} }