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,35 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
namespace GitHub.DistributedTask.WebApi
{
[DataContract]
public sealed class TimelineRecordFeedLinesWrapper
{
public TimelineRecordFeedLinesWrapper()
{
}
public TimelineRecordFeedLinesWrapper(Guid stepId, IList<string> lines)
{
this.StepId = stepId;
this.Value = lines.ToList();
this.Count = lines.Count;
}
[DataMember(Order = 0)]
public Int32 Count { get; private set; }
[DataMember]
public List<string> Value
{
get; private set;
}
[DataMember(EmitDefaultValue = false)]
public Guid StepId { get; set; }
}
}