2024-07-01 21:28:20 +02:00

25 lines
533 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class SklepRegulaKod
{
public decimal SklepId { get; set; }
public decimal SklepRegulaId { 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 SklepRegula SklepRegula { get; set; } = null!;
}