2020-06-09 08:53:28 -04:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
|
|
|
{
|
|
|
|
|
[DataContract]
|
|
|
|
|
public class ActionReferenceList
|
|
|
|
|
{
|
|
|
|
|
[DataMember]
|
|
|
|
|
public IList<ActionReference> Actions
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|