Files
2025-08-30 17:19:57 +08:00

20 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Platform
{
/// <summary>
/// 等待控制:等待同步时序信号变更为期望的信号再执行
/// </summary>
internal class Wait
{
/// <summary>
/// 检查同步信号的频率
/// </summary>
public int Internal { get; set; }
}
}