DRAB/Pcm.Db/Entities/Akwizytor.cs
2025-07-11 00:18:14 +02:00

20 lines
425 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Akwizytor
{
public Akwizytor()
{
Kontrahents = new HashSet<Kontrahent>();
}
public decimal AkwId { get; set; }
public string Nazwisko { get; set; }
public string Opis { get; set; }
public decimal Prowizja { get; set; }
public virtual ICollection<Kontrahent> Kontrahents { get; set; }
}