2024-05-16 10:37:44 +02:00

22 lines
473 B
C#

using System;
using System.Collections.Generic;
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!;
}