We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96bfc9c commit a0fa229Copy full SHA for a0fa229
DigitalLearningSolutions.Web/ViewModels/Frameworks/Import/AddAssessmentQuestionsViewModel.cs
@@ -0,0 +1,13 @@
1
+using DigitalLearningSolutions.Data.Models.Frameworks;
2
+using Microsoft.AspNetCore.Mvc.Rendering;
3
+using System.Collections.Generic;
4
+
5
+namespace DigitalLearningSolutions.Web.ViewModels.Frameworks.Import
6
+{
7
+ public class AddAssessmentQuestionsViewModel
8
+ {
9
+ public DetailFramework Framework { get; set; }
10
+ public IEnumerable<AssessmentQuestion>? FrameworkDefaultQuestions { get; set; }
11
+ public SelectList? QuestionSelectList { get; set; }
12
+ }
13
+}
0 commit comments