GitHub Actions Runner

This commit is contained in:
Tingluo Huang
2019-10-10 00:52:42 -04:00
commit c8afc84840
1255 changed files with 198670 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Runtime.Serialization;
using GitHub.Services.WebApi;
namespace GitHub.Build.WebApi
{
/// <summary>
/// Represents a reference to a variable group.
/// </summary>
[DataContract]
public class VariableGroupReference : BaseSecuredObject
{
public VariableGroupReference()
: this(null)
{
}
internal VariableGroupReference(
ISecuredObject securedObject)
: base(securedObject)
{
}
/// <summary>
/// The ID of the variable group.
/// </summary>
[DataMember(EmitDefaultValue = false)]
public Int32 Id
{
get;
set;
}
/// <summary>
/// The Name of the variable group.
/// </summary>
[DataMember(EmitDefaultValue = false)]
public String Alias
{
get;
set;
}
}
}