mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
10 lines
319 B
C#
10 lines
319 B
C#
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; }
|
|
}
|
|
} |