mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
* call run service renewjob * format * formatting * make it private and expose internals * lint * fix exception class * lint * fix test as well
16 lines
371 B
C#
16 lines
371 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.Actions.RunService.WebApi
|
|
{
|
|
[DataContract]
|
|
public class RenewJobRequest
|
|
{
|
|
[DataMember(Name = "planId", EmitDefaultValue = false)]
|
|
public Guid PlanID { get; set; }
|
|
|
|
[DataMember(Name = "jobId", EmitDefaultValue = false)]
|
|
public Guid JobID { get; set; }
|
|
}
|
|
}
|