mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
18 lines
508 B
C#
18 lines
508 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.Actions.RunService.WebApi
|
|
{
|
|
[DataContract]
|
|
public class AcquireJobRequest
|
|
{
|
|
[DataMember(Name = "jobMessageId", EmitDefaultValue = false)]
|
|
public string JobMessageId { get; set; }
|
|
|
|
[DataMember(Name = "runnerOS", EmitDefaultValue = false)]
|
|
public string RunnerOS { get; set; }
|
|
|
|
[DataMember(Name = "billingOwnerId", EmitDefaultValue = false)]
|
|
public string BillingOwnerId { get; set; }
|
|
}
|
|
}
|