23 lines
649 B
C#
23 lines
649 B
C#
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;
|
|
}
|
|
}
|
|
}
|