Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/SklepHistImp.cs
2026-05-19 16:45:53 +02:00

22 lines
521 B
C#

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> SklepHistImpWart { get; set; } = new List<SklepHistImpWart>();
}