Dekrety #1
This commit is contained in:
17
Blink.Backoffice.Services.PcmDb/Entities/Akwizytor.cs
Normal file
17
Blink.Backoffice.Services.PcmDb/Entities/Akwizytor.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user