DRAB/Pcm.Db/Entities/TypO.cs
2025-07-11 10:50:46 +02:00

25 lines
805 B
C#

namespace Pcm.Db.Entities;
public class TypO
{
public TypO()
{
FormZgods = new HashSet<FormZgod>();
KthTypOs = new HashSet<KthTypO>();
SklepTypOs = new HashSet<SklepTypO>();
ZdarzOs = new HashSet<ZdarzO>();
}
public decimal TypOsId { get; set; }
public string Nazwa { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public string Komentarz { get; set; }
public short? Narzucac { get; set; }
public decimal? CentrTypOsId { get; set; }
public virtual ICollection<FormZgod> FormZgods { get; set; }
public virtual ICollection<KthTypO> KthTypOs { get; set; }
public virtual ICollection<SklepTypO> SklepTypOs { get; set; }
public virtual ICollection<ZdarzO> ZdarzOs { get; set; }
}