using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace XImagingXhandler.XDAL
|
{
|
/// <summary>
|
/// 循环方法在方法列表中的索引
|
/// </summary>
|
public class MethodLoopIndex
|
{
|
public int startIndex { get; set; }
|
public int endIndex { get; set; }
|
|
/// <summary>
|
/// 是否嵌套2层
|
/// </summary>
|
public int isNestLoopTwo { get; set; } = 0;
|
}
|
|
}
|