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

26 lines
573 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepRegulaPozPar
{
public decimal SklepId { get; set; }
public decimal SklepParId { get; set; }
public int Kolejnosc { get; set; }
public decimal SklepRegulaId { get; set; }
public short Typ { get; set; }
public decimal? CentrRegulaId { get; set; }
public decimal? Wartosc { get; set; }
public string? Tekst { get; set; }
public virtual SklepPozPar SklepPozPar { get; set; } = null!;
}