mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
* call run service renewjob * format * formatting * make it private and expose internals * lint * fix exception class * lint * fix test as well
17 lines
273 B
C#
17 lines
273 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Sdk.RSWebApi.Contracts
|
|
{
|
|
[DataContract]
|
|
public class RenewJobResponse
|
|
{
|
|
[DataMember]
|
|
public DateTime LockedUntil
|
|
{
|
|
get;
|
|
internal set;
|
|
}
|
|
}
|
|
}
|