15 lines
347 B
C#
15 lines
347 B
C#
namespace DuSoft.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>();
|
|
}
|