using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkMV1 { public class NoodleShidModel { /// /// 是否被屏蔽,true:屏蔽,false:未屏蔽 /// public bool IsShield { get; set; } /// /// 是否忙碌,true:忙碌,FALSE:空闲 /// public bool NoodleCookerStatus { get; set; } } }