2023-06-02 21:47:59 +02:00
|
|
|
using System;
|
2022-07-28 16:42:02 -04:00
|
|
|
using GitHub.DistributedTask.WebApi;
|
|
|
|
|
|
|
|
|
|
namespace GitHub.Runner.Common
|
|
|
|
|
{
|
|
|
|
|
public class JobStatusEventArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public JobStatusEventArgs(TaskAgentStatus status)
|
|
|
|
|
{
|
|
|
|
|
this.Status = status;
|
|
|
|
|
}
|
|
|
|
|
public TaskAgentStatus Status { get; private set; }
|
|
|
|
|
}
|
|
|
|
|
}
|