using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HBLConsole.Model
{
public class SimOrderData
{
///
/// 面条位置(1 -- 5)
///
public ushort NoodleLoc { get; set; }
///
/// 碗位置(11 -- 12)
///
public ushort BowlLoc { get; set; }
///
/// 浇头位置 (6 -- 10)
///
public ushort SoupLoc { get; set; }
}
}