using System; using System.Collections.Generic; namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepTrescEmailTekst { public decimal SklepId { get; set; } public decimal SklepTEId { get; set; } public short Kolejnosc { get; set; } public short Znaczenie { get; set; } public string Tresc { get; set; } = null!; public virtual SklepTrescEmail SklepTrescEmail { get; set; } = null!; }