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

22 lines
487 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!;
}