Files
2017-03-08 11:21:27 +01:00

15 lines
313 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Nuvolar.Module.Controllers
{
public class WorkEventArgs:EventArgs
{
public int Count { get; set; }
public int CurrentValue { get; set; }
public string Message { get; set; }
}
}