16 lines
329 B
C#
16 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class PozParSzczeg
|
|
{
|
|
public decimal ParId { get; set; }
|
|
|
|
public int Kolejnosc { get; set; }
|
|
|
|
public string DodInfo { get; set; } = null!;
|
|
|
|
public virtual PozPar PozPar { get; set; } = null!;
|
|
}
|