18 lines
362 B
C#
18 lines
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class RegulaParam
|
|
{
|
|
public decimal RegulaId { get; set; }
|
|
|
|
public short Znaczenie { get; set; }
|
|
|
|
public int? Param1 { get; set; }
|
|
|
|
public string? Param2 { get; set; }
|
|
|
|
public virtual Regula Regula { get; set; } = null!;
|
|
}
|