mirror of
https://github.com/actions/runner.git
synced 2025-12-15 06:26:46 +00:00
24 lines
366 B
C#
24 lines
366 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
[DataContract]
|
|
public class TaskLogReference
|
|
{
|
|
[DataMember]
|
|
public Int32 Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataMember]
|
|
public Uri Location
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|