22 lines
416 B
C#
22 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Weiferl.Databas.EF.Models;
|
|
|
|
public partial class Mainboard
|
|
{
|
|
public int MainId { get; set; }
|
|
|
|
public string? KatName { get; set; }
|
|
|
|
public string? Hersteller { get; set; }
|
|
|
|
public string? Modell { get; set; }
|
|
|
|
public string? Sockel { get; set; }
|
|
|
|
public string? Formfaktor { get; set; }
|
|
|
|
public decimal? Preis { get; set; }
|
|
}
|