Skip to content

Commit a0fa229

Browse files
committed
TD-5155 Begins to implement add questions view model
1 parent 96bfc9c commit a0fa229

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)