22 lines
454 B
C#
22 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class RegulaProg
|
|
{
|
|
public decimal RegulaId { get; set; }
|
|
|
|
public short Kolejnosc { get; set; }
|
|
|
|
public decimal? ProgOd { get; set; }
|
|
|
|
public decimal? ProgDo { get; set; }
|
|
|
|
public decimal? Wartosc1 { get; set; }
|
|
|
|
public decimal? Wartosc2 { get; set; }
|
|
|
|
public virtual Regula Regula { get; set; } = null!;
|
|
}
|