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

29 lines
910 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class SklepTypO
{
public SklepTypO()
{
SklepFormZgods = new HashSet<SklepFormZgod>();
SklepKthTypOs = new HashSet<SklepKthTypO>();
SklepZdarzOs = new HashSet<SklepZdarzO>();
}
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<SklepFormZgod> SklepFormZgods { get; set; }
public virtual ICollection<SklepKthTypO> SklepKthTypOs { get; set; }
public virtual ICollection<SklepZdarzO> SklepZdarzOs { get; set; }
}