11 lines
227 B
C#
11 lines
227 B
C#
namespace Tnb.PerMgr.Entities.Dto
|
|
{
|
|
public class ProcessParamOutput
|
|
{
|
|
public string? name { get; set; }
|
|
|
|
public decimal upper_value { get; set; }
|
|
|
|
public decimal lower_value { get; set; }
|
|
}
|
|
} |