Bearbeitung von Lektion und Kurs

This commit is contained in:
2020-06-09 16:00:08 +02:00
parent 6a49e1b8f7
commit 01585fc9ef
13 changed files with 317 additions and 72 deletions

View File

@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc.Rendering;
namespace MultipleChoiceTrainer.Models
{
public class AbstractEditViewModel<T>
where T: new()
{
public T Entity { get; set; }
public int? PreviousCategoryId { get; set; }
public SelectList Assignables { get; set; }
}
}