22 lines
521 B
C#
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>();
|
|
}
|