OdooAPI/OdooAPI/Database/Tabellen/LevArtikel.cs
2026-02-13 14:55:57 +01:00

25 lines
576 B
C#

namespace OdooAPI.Database.Tabellen;
public class LevArtikel
{
public int Id { get; set; }
public int LeverancierId { get; set; }
public Leverancier Leverancier { get; set; } = null!;
public int ArtikelId { get; set; }
public Artikel Artikel { get; set; } = null!;
public string ArtikelNummerLev { get; set; } = "";
public decimal Inkoopprijs { get; set; }
public int Levertijd { get; set; } = 1;
public string Omschrijving { get; set; } = "";
public bool Leverbaar { get; set; }
public decimal? Korting { get; set; }
}