File: JobListEntry.cs | Web Access |
Project: src\src\Microsoft.DotNet.Helix\JobSender\Microsoft.DotNet.Helix.JobSender.csproj (Microsoft.DotNet.Helix.JobSender) |
using System.Collections.Generic; namespace Microsoft.DotNet.Helix.Client { internal class JobListEntry { public string Command { get; set; } public Dictionary<string, string> CorrelationPayloadUrisWithDestinations { get; set; } = new Dictionary<string, string>(); public string PayloadUri { get; set; } public string WorkItemId { get; set; } public int TimeoutInSeconds { get; set; } } } |