20 lines
452 B
C#
20 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class Artykul
|
|
{
|
|
public decimal ArtId { get; set; }
|
|
|
|
public string ArtNazwa { get; set; } = null!;
|
|
|
|
public decimal? CentrArtId { get; set; }
|
|
|
|
public decimal? GlownyTowId { get; set; }
|
|
|
|
public virtual Towar? GlownyTow { get; set; }
|
|
|
|
public virtual ICollection<Towar> Towar { get; set; } = new List<Towar>();
|
|
}
|