15 lines
318 B
C#
15 lines
318 B
C#
namespace DuSoft.PcmDb.Entities;
|
|
|
|
public partial class ZlecParam
|
|
{
|
|
public decimal KasaId { get; set; }
|
|
|
|
public decimal ZlecId { get; set; }
|
|
|
|
public string ParNazwa { get; set; } = null!;
|
|
|
|
public string ParWartosc { get; set; } = null!;
|
|
|
|
public virtual Zlecenie Zlecenie { get; set; } = null!;
|
|
}
|