Files
vegasco/src/Vegasco.Server.AppHost.Shared/Constants.cs

17 lines
300 B
C#
Raw Normal View History

namespace Vegasco.Server.AppHost.Shared;
public static class Constants
{
public static class Projects
{
2025-06-12 19:18:17 +02:00
public const string Api = "Vegasco.Server.Api";
}
public static class Database
{
public const string ServiceName = "postgres";
public const string Name = "vegasco-database";
}
}