File: Kudu\KuduMetadata.cs
Web Access
Project: ..\..\..\src\WebSdk\Publish\Tasks\Microsoft.NET.Sdk.Publish.Tasks.csproj (Microsoft.NET.Sdk.Publish.Tasks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.NET.Sdk.Publish.Tasks.Kudu
{
    public class KuduConnectionInfo
    {
        public string? UserName { get; set; }
 
        public string? Password { get; set; }
 
        public string? SiteName { get; set; }
 
        public string? DestinationUrl { get; set; }
    }
}