DRAB/Pcm.Db/Entities/DefinicjaKodu.cs
2025-07-11 00:18:14 +02:00

25 lines
651 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class DefinicjaKodu
{
public DefinicjaKodu()
{
SkladnikDefinicjiKodus = new HashSet<SkladnikDefinicjiKodu>();
}
public decimal Dkid { get; set; }
public short Typ { get; set; }
public string Nazwa { get; set; }
public DateTime? DataOd { get; set; }
public DateTime? DataDo { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public decimal? CentrDkid { get; set; }
public virtual ICollection<SkladnikDefinicjiKodu> SkladnikDefinicjiKodus { get; set; }
}