using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Artykul { public Artykul() { Towars = new HashSet(); } public decimal ArtId { get; set; } public string ArtNazwa { get; set; } public decimal? CentrArtId { get; set; } public decimal? GlownyTowId { get; set; } public virtual Towar GlownyTow { get; set; } public virtual ICollection Towars { get; set; } }