22 lines
397 B
C#
22 lines
397 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Weiferl.Databas.EF.Models;
|
|||
|
|
|||
|
public partial class Ram
|
|||
|
{
|
|||
|
public int RamId { get; set; }
|
|||
|
|
|||
|
public string? KatName { get; set; }
|
|||
|
|
|||
|
public string? Hersteller { get; set; }
|
|||
|
|
|||
|
public string? Modell { get; set; }
|
|||
|
|
|||
|
public int? Mhz { get; set; }
|
|||
|
|
|||
|
public int? Größe { get; set; }
|
|||
|
|
|||
|
public decimal? Preis { get; set; }
|
|||
|
}
|