20 lines
372 B
C#
20 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Weiferl.Databas.EF.Models;
|
|
|
|
public partial class Festplatten
|
|
{
|
|
public int FestpId { get; set; }
|
|
|
|
public string? KatName { get; set; }
|
|
|
|
public string? Hersteller { get; set; }
|
|
|
|
public string? Modell { get; set; }
|
|
|
|
public int? Größe { get; set; }
|
|
|
|
public decimal? Preis { get; set; }
|
|
}
|