20 lines
443 B
C#
20 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Future.Contract
|
|
{
|
|
/// <summary>
|
|
/// 所有条件判定指令的公共基类
|
|
/// </summary>
|
|
public abstract class ConditionalInstruct : LogicalInstructBase
|
|
{
|
|
/// <summary>
|
|
/// 是否为取反逻辑
|
|
/// </summary>
|
|
public bool IsReverseLogic { get; set; }
|
|
}
|
|
}
|