C00225155-02/C00225155/MegaRobo.C00225155/Common/FlowControlModels/ObstructFlag.cs

21 lines
396 B
C#
Raw Normal View History

2026-04-13 09:12:49 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
public class ObstructFlag
{
/// <summary>
/// 命名
/// </summary>
public string strName = "功能描述";
/// <summary>
/// true/false
/// </summary>
public bool flag = true;
}
}