add createdBy in Survey for test

This commit is contained in:
Вячеслав 2025-04-18 23:52:19 +05:00
parent 0a7e4310e0
commit 4caf3de6fe

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; }
} }