Allow to add and remove instruction set extensions from processor details in admin view.

This commit is contained in:
2020-05-30 01:57:33 +01:00
parent 116813fe29
commit ae2007cae0
14 changed files with 299 additions and 423 deletions

View File

@@ -0,0 +1,10 @@
namespace Marechai.ViewModels
{
public class InstructionSetExtensionByProcessorViewModel : BaseViewModel<int>
{
public string Extension { get; set; }
public string Processor { get; set; }
public int ProcessorId { get; set; }
public int ExtensionId { get; set; }
}
}