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

21 lines
462 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Artykul
{
public Artykul()
{
Towars = new HashSet<Towar>();
}
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<Towar> Towars { get; set; }
}