18 lines
332 B
C#
18 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GeekDesk.Constant
|
|
{
|
|
internal class RunTimeStatus
|
|
{
|
|
|
|
/// <summary>
|
|
/// 查询框是否在工作
|
|
/// </summary>
|
|
public static bool SEARCH_BOX_SHOW = false;
|
|
}
|
|
}
|