Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/SklepStanPrtMag.cs
2026-05-19 16:45:53 +02:00

22 lines
508 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepStanPrtMag
{
public decimal SklepId { get; set; }
public DateTime Dzien { get; set; }
public decimal SklepTowId { get; set; }
public decimal PMId { get; set; }
public decimal StanPrt { get; set; }
public virtual SklepDzienRozl SklepDzienRozl { get; set; } = null!;
public virtual SklepPrtMag SklepPrtMag { get; set; } = null!;
}