mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
364 B
C#
12 lines
364 B
C#
namespace Cicm.Database.Models
|
|
{
|
|
public class InstructionSetExtensionsByProcessor
|
|
{
|
|
public int Id { get; set; }
|
|
public int ProcessorId { get; set; }
|
|
public int ExtensionId { get; set; }
|
|
|
|
public InstructionSetExtension Extension { get; set; }
|
|
public Processor Processor { get; set; }
|
|
}
|
|
} |