mirror of https://github.com/dotnet/tye.git
Browse Source
* Sketch GET for control plane. * Add properties to control plane metadata. * Resolve linter warnings. * Switch to /application endpoint. * Change ID to Id.pull/1086/head
committed by
GitHub
5 changed files with 44 additions and 5 deletions
@ -0,0 +1,15 @@ |
|||
// Licensed to the .NET Foundation under one or more agreements.
|
|||
// The .NET Foundation licenses this file to you under the MIT license.
|
|||
// See the LICENSE file in the project root for more information.
|
|||
|
|||
namespace Microsoft.Tye.Hosting.Model.V1 |
|||
{ |
|||
public class V1Application |
|||
{ |
|||
public string? Id { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Source { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue