Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/KodWazony.cs
2026-05-19 16:45:53 +02:00

28 lines
590 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KodWazony
{
public decimal KWId { get; set; }
public short Prefix { get; set; }
public string Nazwa { get; set; } = null!;
public short CzescStala { get; set; }
public short WartoscWKodzie { get; set; }
public short DodKontrola { get; set; }
public short PrecyzjaWKodzie { get; set; }
public decimal? CentrKWId { get; set; }
public decimal? JMId { get; set; }
public virtual JM? JM { get; set; }
}