mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
21 lines
544 B
C#
21 lines
544 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Cicm.Database.Models
|
|
{
|
|
public class InstructionSetExtension
|
|
{
|
|
public InstructionSetExtension()
|
|
{
|
|
InstructionSetExtensionsByProcessor = new HashSet<InstructionSetExtensionsByProcessor>();
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public string Extension { get; set; }
|
|
|
|
public virtual ICollection<InstructionSetExtensionsByProcessor> InstructionSetExtensionsByProcessor
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |