Files
JRCookbook/JRCookbookBusiness/LongRunningStatusUpdatedEventArgs.cs
2026-03-07 19:22:22 -06:00

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;
}
}
}