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; } }