2024-05-16 10:37:44 +02:00

26 lines
539 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class RegulaKod
{
public decimal RegulaId { get; set; }
public string Kod { get; set; } = null!;
public short Znaczenie { get; set; }
public decimal? Ilosc { get; set; }
public decimal? Cena { get; set; }
public int? Parametr { get; set; }
public string? NazwaTowaru { get; set; }
public string? Informacja { get; set; }
public virtual Regula Regula { get; set; } = null!;
}