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

14 lines
288 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Osoba
{
public decimal KontrId { get; set; }
public string Nazwisko { get; set; } = null!;
public virtual Kontrahent Kontr { get; set; } = null!;
}