2024-05-16 10:37:44 +02:00

20 lines
401 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class OfKod
{
public decimal KontrId { get; set; }
public decimal OfId { get; set; }
public short Kolejnosc { get; set; }
public short TypKodu { get; set; }
public string Kod { get; set; } = null!;
public virtual Oferta Oferta { get; set; } = null!;
}