Dekrety #1
This commit is contained in:
19
Blink.Backoffice.Services.PcmDb/Entities/Artykul.cs
Normal file
19
Blink.Backoffice.Services.PcmDb/Entities/Artykul.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user