14 lines
288 B
C#
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!;
|
|
}
|