2024-05-16 15:01:35 +02:00

15 lines
366 B
C#

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>();
}