using System.Collections.Generic; using System.ComponentModel; namespace HxModel.Sockets.HxHotel { /// /// 检查成像板位是否已经有板应答类 /// public class CheckSafeResponseData { public const string SAFE = "SAFE"; public const string UNSAFE = "SAFE"; /// /// SAFE、UNSAFE /// public string result { get; set; } } }