DRAB/Pcm.Db/Entities/Oplatum.cs
2025-07-11 00:18:14 +02:00

24 lines
670 B
C#

using System;
#nullable disable
namespace Pcm.Db.Entities;
public class Oplatum
{
public decimal OplataId { get; set; }
public string Nazwa { get; set; }
public short Typ { get; set; }
public short Rodzaj { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public decimal? Kbid { get; set; }
public decimal? CentrOplataId { get; set; }
public DateTime? DataOd { get; set; }
public DateTime? DataDo { get; set; }
public decimal? StawkaProc { get; set; }
public decimal? Kwota { get; set; }
public string Komentarz { get; set; }
public virtual KontoBankowe Kb { get; set; }
}