added Answer.cs

This commit is contained in:
Вячеслав 2025-03-12 23:57:50 +05:00
parent 23a97fb900
commit 9b4670ab99
3 changed files with 14 additions and 0 deletions

View file

@ -7,4 +7,5 @@ public class Survey
public string Description { get; set; }
public ICollection<QuestionBase> Questions { get; set; }
public ICollection<Answer> Answers { get; set; }
}