File: generated-code\Models\MultiSourceResponse.cs | Web Access |
Project: src\src\Microsoft.DotNet.Helix\Client\CSharp\Microsoft.DotNet.Helix.Client.csproj (Microsoft.DotNet.Helix.Client) |
using System; using System.Collections.Immutable; using Newtonsoft.Json; namespace Microsoft.DotNet.Helix.Client.Models { public partial class MultiSourceResponse { public MultiSourceResponse(IImmutableDictionary<string, Models.MultiSourceResponseSource> sources) { Sources = sources; } [JsonProperty("Sources")] public IImmutableDictionary<string, Models.MultiSourceResponseSource> Sources { get; } } } |