mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
15 lines
322 B
C#
15 lines
322 B
C#
using System;
|
|
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; }
|
|
}
|
|
}
|