2024-05-16 15:01:35 +02:00

25 lines
552 B
C#

namespace Blink.Backoffice.Services.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!;
}