using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepTypO { public SklepTypO() { SklepFormZgods = new HashSet(); SklepKthTypOs = new HashSet(); SklepZdarzOs = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepTypOsId { get; set; } public decimal? TypOsId { get; set; } public string Nazwa { get; set; } public short Aktywny { get; set; } public string Komentarz { get; set; } public decimal? CentrTypOsId { get; set; } public virtual Sklep Sklep { get; set; } public virtual TypO TypOs { get; set; } public virtual ICollection SklepFormZgods { get; set; } public virtual ICollection SklepKthTypOs { get; set; } public virtual ICollection SklepZdarzOs { get; set; } }