25 lines
476 B
C#
25 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DBCHM
|
|
{
|
|
/// <summary>
|
|
/// 进度条参数类
|
|
/// </summary>
|
|
public class ProgressArg
|
|
{
|
|
public ProgressArg(Action execAct, int maxNum)
|
|
{
|
|
this.ExecAct = execAct;
|
|
this.MaxNum = maxNum;
|
|
}
|
|
public Action ExecAct { get; set; }
|
|
|
|
public int MaxNum { get; set; }
|
|
|
|
}
|
|
}
|