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