File: Modeler\ServiceClientModel.cs
Web Access
Project: src\src\Microsoft.DotNet.SwaggerGenerator\Microsoft.DotNet.SwaggerGenerator.CodeGenerator\Microsoft.DotNet.SwaggerGenerator.CodeGenerator.csproj (Microsoft.DotNet.SwaggerGenerator.CodeGenerator)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections.Generic;
using System.Collections.Immutable;
 
namespace Microsoft.DotNet.SwaggerGenerator.Modeler
{
    public class ServiceClientModel
    {
        public ServiceClientModel(
            string clientName,
            string @namespace,
            string baseUrl,
            IEnumerable<TypeModel> types,
            IEnumerable<MethodGroupModel> methodGroups)
        {
            Name = clientName;
            Namespace = @namespace;
            BaseUrl = baseUrl;
            Types = types.ToImmutableList();
            MethodGroups = methodGroups.ToImmutableList();
        }
 
        public IImmutableList<TypeModel> Types { get; }
 
        public IImmutableList<MethodGroupModel> MethodGroups { get; }
 
        public string BaseUrl { get; }
 
        public string Name { get; }
        public string Namespace { get; }
    }
}