2024-05-16 10:37:44 +02:00

24 lines
575 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KthParam
{
public decimal KthParId { get; set; }
public short Kolejnosc { get; set; }
public string Nazwa { get; set; } = null!;
public short Wymagany { get; set; }
public decimal? KPWDomyslnaId { get; set; }
public decimal? CentrKthParId { get; set; }
public virtual KthParWartosc? KPWDomyslna { get; set; }
public virtual ICollection<KthParWartosc> KthParWartosc { get; set; } = new List<KthParWartosc>();
}