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

20 lines
453 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class HistImp
{
public decimal ImpId { 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<HistImpWart> HistImpWart { get; set; } = new List<HistImpWart>();
}