2024-07-01 21:20:00 +02:00

19 lines
424 B
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepParBon
{
public decimal SklepId { get; set; }
public decimal SklepParId { get; set; }
public short Kolejnosc { get; set; }
public decimal Kwota { get; set; }
public string Typ { get; set; } = null!;
public string Numer { get; set; } = null!;
public virtual SklepParagon SklepParagon { get; set; } = null!;
}