// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Aspire.Dashboard.Model;
internal static class KnownResourceTypes
{
public const string Executable = "Executable";
public const string Project = "Project";
public const string Container = "Container";
public const string Parameter = "Parameter";
public const string ConnectionString = "ConnectionString";
public const string ExternalService = "ExternalService";
}
|