using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Hydro.CommonBase
|
{
|
public class GlobalProgress
|
{
|
public static GlobalProgress Instance = new GlobalProgress();
|
public static string stateText { get; set; }
|
public static int MaxNum { get; set; }
|
public static int CurrentNum { get; set; }
|
public static int ChildMaxNum { get; set; }
|
public static int ChildCurrentNum { get; set; }
|
public static string ChildText { get; set; }
|
public static bool Hide { get; set; } = false;
|
|
public static bool NeedStop { get; set; } = false;
|
|
public static int mode { get; set; } = 0;
|
|
}
|
}
|