2018-08-05 23:11:15 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Cicm.Database.Models
|
|
|
|
|
|
{
|
2018-08-06 21:27:14 +01:00
|
|
|
|
public class InstructionSetExtension
|
2018-08-05 23:11:15 +01:00
|
|
|
|
{
|
2018-08-06 21:27:14 +01:00
|
|
|
|
public InstructionSetExtension()
|
2018-08-05 23:11:15 +01:00
|
|
|
|
{
|
|
|
|
|
|
InstructionSetExtensionsByProcessor = new HashSet<InstructionSetExtensionsByProcessor>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Extension { get; set; }
|
|
|
|
|
|
|
2018-08-06 23:33:39 +01:00
|
|
|
|
public virtual ICollection<InstructionSetExtensionsByProcessor> InstructionSetExtensionsByProcessor
|
|
|
|
|
|
{
|
|
|
|
|
|
get;
|
|
|
|
|
|
set;
|
|
|
|
|
|
}
|
2018-08-05 23:11:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|