using System; using System.Collections.Generic; namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepHistImp { public decimal SklepId { get; set; } public decimal SklepImpId { get; set; } public DateTime Kiedy { get; set; } public short TypDanych { get; set; } public short Aktywny { get; set; } public DateTime Zmiana { get; set; } public virtual ICollection SklepHistImpWart { get; set; } = new List(); }