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

20 lines
422 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!;
}