mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
23 lines
361 B
C#
23 lines
361 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
[DataContract]
|
|
public class ActionReference
|
|
{
|
|
[DataMember]
|
|
public string NameWithOwner
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataMember]
|
|
public string Ref
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|