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

12 lines
366 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; }
public InstructionSetExtensions Extension { get; set; }
public Processors Processor { get; set; }
}
}