mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Add EntityFramework models.
This commit is contained in:
17
Cicm.Database/Models/InstructionSets.cs
Normal file
17
Cicm.Database/Models/InstructionSets.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Cicm.Database.Models
|
||||
{
|
||||
public class InstructionSets
|
||||
{
|
||||
public InstructionSets()
|
||||
{
|
||||
Processors = new HashSet<Processors>();
|
||||
}
|
||||
|
||||
public int Id { get; set; }
|
||||
public string InstructionSet { get; set; }
|
||||
|
||||
public ICollection<Processors> Processors { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user