using System; using System.Collections.Generic; namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepPozAkcyza { public decimal SklepId { get; set; } public decimal SklepDokId { get; set; } public int Kolejnosc { get; set; } public decimal SklepGrAkcId { get; set; } public decimal Wartosc { get; set; } public virtual SklepGrupaAkcyzowa SklepGrupaAkcyzowa { get; set; } = null!; public virtual SklepPozDok SklepPozDok { get; set; } = null!; }