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

17 lines
498 B
C#
Raw Normal View History

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