20 lines
409 B
C#
20 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class PHRozliczenie
|
|
{
|
|
public decimal DokId { get; set; }
|
|
|
|
public decimal PHId { get; set; }
|
|
|
|
public decimal Kwota { get; set; }
|
|
|
|
public DateTime? Rozliczono { get; set; }
|
|
|
|
public virtual Dok Dok { get; set; } = null!;
|
|
|
|
public virtual PH PH { get; set; } = null!;
|
|
}
|