using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class TypO { public TypO() { FormZgods = new HashSet(); KthTypOs = new HashSet(); SklepTypOs = new HashSet(); ZdarzOs = new HashSet(); } 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 FormZgods { get; set; } public virtual ICollection KthTypOs { get; set; } public virtual ICollection SklepTypOs { get; set; } public virtual ICollection ZdarzOs { get; set; } }