PriorityLevel.cs
331 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Acc.AgvManager
{
public class PriorityLevel
{
public static readonly int HIGH = 100;
public static readonly int MIDDLE = 50;
public static readonly int LOW = 1;
}
}