Y2S2-Syski/syski_api/uk.co.syski.data/CPUModel.cs
2020-06-09 21:02:14 +01:00

24 lines
430 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Syski.Data
{
public class CPUModel
{
public Guid Id { get; set; }
public Guid? ModelId { get; set; }
public Model Model { get; set; }
public Guid? ArchitectureId { get; set; }
public Architecture Architecture { get; set; }
public IEnumerable<SystemCPU> SystemCPUs { get; set; }
}
}