mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
17 lines
333 B
C#
17 lines
333 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
[DataContract]
|
|
public class ActionDownloadInfoCollection
|
|
{
|
|
[DataMember]
|
|
public IDictionary<string, ActionDownloadInfo> Actions
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|