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

18 lines
381 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KontrDlugiZasob
{
public decimal KontrId { get; set; }
public int Znaczenie { get; set; }
public int Kolejnosc { get; set; }
public decimal ZasobId { get; set; }
public virtual Kontrahent Kontr { get; set; } = null!;
}