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

26 lines
557 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!;
}