Files
marechai/Cicm.Database/Models/Gpu.cs

29 lines
1.0 KiB
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
using System;
using System.Collections.Generic;
namespace Cicm.Database.Models
{
2018-08-06 21:27:14 +01:00
public class Gpu
2018-08-05 23:11:15 +01:00
{
2018-08-06 21:27:14 +01:00
public Gpu()
2018-08-05 23:11:15 +01:00
{
GpusByMachine = new HashSet<GpusByMachine>();
ResolutionsByGpu = new HashSet<ResolutionsByGpu>();
}
public int Id { get; set; }
public string Name { get; set; }
public int? CompanyId { get; set; }
2018-08-05 23:11:15 +01:00
public string ModelCode { get; set; }
public DateTime? Introduced { get; set; }
public string Package { get; set; }
public string Process { get; set; }
public float? ProcessNm { get; set; }
public float? DieSize { get; set; }
public long? Transistors { get; set; }
2018-08-06 23:33:39 +01:00
public virtual Company Company { get; set; }
public virtual ICollection<GpusByMachine> GpusByMachine { get; set; }
public virtual ICollection<ResolutionsByGpu> ResolutionsByGpu { get; set; }
2018-08-05 23:11:15 +01:00
}
}