namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SkladnikWzorca { public decimal SkWzId { get; set; } public decimal? TowIdWzorca { get; set; } public string Nazwa { get; set; } = null!; public short Kolejnosc { get; set; } public decimal Ilosc { get; set; } public decimal Cena { get; set; } public short Obowiazkowy { get; set; } public short Aktywny { get; set; } public DateTime Zmiana { get; set; } public decimal? CentrSkWzId { get; set; } public short? WyborWielu { get; set; } public short? CzyDodatek { get; set; } public short? RozneCeny { get; set; } public short? WyliczenieCeny { get; set; } public virtual Towar? TowIdWzorcaNavigation { get; set; } public virtual ICollection TowarSkladnika { get; set; } = new List(); }