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

17 lines
496 B
C#
Raw Normal View History

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; }
public ICollection<InstructionSetExtensionsByProcessor> InstructionSetExtensionsByProcessor { get; set; }
}
}