DRAB/Pcm.Db/Entities/Akwizytor.cs
2025-07-11 10:50:46 +02:00

16 lines
371 B
C#

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