24 lines
440 B
C#
24 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Weiferl.Databas.EF.Models;
|
|
|
|
public partial class Cpu
|
|
{
|
|
public int CpuId { get; set; }
|
|
|
|
public string? KatName { get; set; }
|
|
|
|
public string? Hersteller { get; set; }
|
|
|
|
public string? Modell { get; set; }
|
|
|
|
public string? Sockel { get; set; }
|
|
|
|
public int? Kerne { get; set; }
|
|
|
|
public int? Threads { get; set; }
|
|
|
|
public decimal? Preis { get; set; }
|
|
}
|