22 lines
480 B
C#
22 lines
480 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 virtual Dok Dok { get; set; } = null!;
|
|
|
|
public virtual Dok RozliczanyDok { get; set; } = null!;
|
|
}
|