mirror of
https://github.com/actions/runner.git
synced 2025-12-31 06:11:49 +08:00
16 lines
374 B
C#
16 lines
374 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; }
|
|
}
|
|
}
|