mirror of
https://github.com/actions/runner.git
synced 2025-12-17 07:54:19 +00:00
GitHub Actions Runner
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using GitHub.Services.WebApi;
|
||||
|
||||
namespace GitHub.Build.WebApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a reference to a build option definition.
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public class BuildOptionDefinitionReference : BaseSecuredObject
|
||||
{
|
||||
public BuildOptionDefinitionReference()
|
||||
{
|
||||
}
|
||||
|
||||
internal BuildOptionDefinitionReference(
|
||||
ISecuredObject securedObject)
|
||||
: base(securedObject)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The ID of the referenced build option.
|
||||
/// </summary>
|
||||
[DataMember(IsRequired = true, Order = 1)]
|
||||
public Guid Id
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user