15 lines
313 B
C#
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; }
|
|
}
|
|
}
|