Initial population
This commit is contained in:
22
JRCookbookBusiness/LongRunningStatusUpdatedEventArgs.cs
Normal file
22
JRCookbookBusiness/LongRunningStatusUpdatedEventArgs.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JRCookbookBusiness
|
||||
{
|
||||
public class LongRunningStatusUpdatedEventArgs : EventArgs
|
||||
{
|
||||
public string Status { get; set; }
|
||||
public int CompletedItemCount { get; set; }
|
||||
public int TotalItemCount { get; set; }
|
||||
|
||||
public LongRunningStatusUpdatedEventArgs(string status, int completedItemCount, int totalItemCount)
|
||||
{
|
||||
Status = Status;
|
||||
CompletedItemCount = completedItemCount;
|
||||
TotalItemCount = totalItemCount;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user