Files
marechai/Cicm.Database/Models/InstructionSetExtensionsByProcessor.cs

12 lines
364 B
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
namespace Cicm.Database.Models
{
public class InstructionSetExtensionsByProcessor
{
public int Id { get; set; }
public int ProcessorId { get; set; }
public int ExtensionId { get; set; }
2018-08-06 21:27:14 +01:00
public InstructionSetExtension Extension { get; set; }
public Processor Processor { get; set; }
2018-08-05 23:11:15 +01:00
}
}