20 lines
371 B
C#
20 lines
371 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Weiferl.Databas.EF.Models;
|
|||
|
|
|||
|
public partial class Grafikkarten
|
|||
|
{
|
|||
|
public int GraId { get; set; }
|
|||
|
|
|||
|
public string? KatName { get; set; }
|
|||
|
|
|||
|
public string? Modell { get; set; }
|
|||
|
|
|||
|
public string? Hersteller { get; set; }
|
|||
|
|
|||
|
public string? Chip { get; set; }
|
|||
|
|
|||
|
public decimal? Preis { get; set; }
|
|||
|
}
|