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

16 lines
450 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class SklepRapWartPoczDane
{
public decimal SklepId { get; set; }
public decimal SklepRwpid { get; set; }
public decimal SklepMagId { get; set; }
public decimal Typ { get; set; }
public short Numer { get; set; }
public decimal Wartosc { get; set; }
public virtual SklepMagazyn Sklep { get; set; }
public virtual SklepRapWartPocz SklepNavigation { get; set; }
}