maybe model inheritance is friends we made along the way...

- moved AnswerVariants to QuestionBase due to strange logic
This commit is contained in:
Вячеслав 2025-04-20 19:30:50 +05:00
parent cc89ff818b
commit ab331a32d9
3 changed files with 2 additions and 2 deletions

View file

@ -2,5 +2,4 @@ namespace SurveyLib.Core.Models.QuestionVariants;
public class MultipleAnswerQuestion : QuestionBase
{
public ICollection<AnswerVariant> AnswerVariants { get; set; }
}