12 lines
221 B
C#
12 lines
221 B
C#
|
10 years ago
|
|
||
|
9 years ago
|
namespace Yavsc.Models.Process
|
||
|
10 years ago
|
{
|
||
|
|
public class ConstInputValue : NamedRequisition
|
||
|
|
{
|
||
|
|
public bool Value { get; set; }
|
||
|
|
public override bool Eval()
|
||
|
|
{
|
||
|
|
return Value;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|