28 lines
573 B
C#
28 lines
573 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; }
|
|
}
|