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

18 lines
415 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Akwizytor
{
public decimal AkwId { get; set; }
public string Nazwisko { get; set; } = null!;
public string Opis { get; set; } = null!;
public decimal Prowizja { get; set; }
public virtual ICollection<Kontrahent> Kontrahent { get; set; } = new List<Kontrahent>();
}