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

26 lines
596 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Rozlicza
{
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public decimal RozliczanyDokId { get; set; }
public decimal Rozliczenie { get; set; }
public decimal? RozliczeniePodatku { get; set; }
public decimal? DodRozliczenie { get; set; }
public decimal? PomRozliczenie { get; set; }
public virtual Dok Dok { get; set; } = null!;
public virtual Dok RozliczanyDok { get; set; } = null!;
}