This commit is contained in:
Phillip Hoff 2021-07-23 10:21:57 -07:00
Родитель 765575313d
Коммит d30f427288
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -2,12 +2,14 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace Microsoft.Tye
{
public sealed class
BindingBuilder
{
public string? Name { get; set; }
public string? Name { get; set; } = Guid.NewGuid().ToString();
public string? ConnectionString { get; set; }
public int? Port { get; set; }
public int? ContainerPort { get; set; }