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

14 lines
298 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!;
}