namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepTypOs { public decimal SklepId { get; set; } public decimal SklepTypOsId { get; set; } public decimal? TypOsId { get; set; } public string Nazwa { get; set; } = null!; public short Aktywny { get; set; } public string? Komentarz { get; set; } public decimal? CentrTypOsId { get; set; } public virtual Sklep Sklep { get; set; } = null!; public virtual ICollection SklepFormZgod { get; set; } = new List(); public virtual ICollection SklepKthTypOs { get; set; } = new List(); public virtual ICollection SklepZdarzOs { get; set; } = new List(); public virtual TypOs? TypOs { get; set; } }