namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class TypOs { public decimal TypOsId { get; set; } public string Nazwa { get; set; } = null!; 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 { get; set; } = new List(); public virtual ICollection SklepTypOs { get; set; } = new List(); public virtual ICollection ZdarzOs { get; set; } = new List(); public virtual ICollection Kontr { get; set; } = new List(); }