Files
vegasco/src/Vegasco.Server.AppHost.Shared/Constants.cs
ThompsonNye 16bc250789
All checks were successful
continuous-integration/drone/push Build is passing
Fix project name spelling
2025-06-12 19:20:22 +02:00

17 lines
300 B
C#

namespace Vegasco.Server.AppHost.Shared;
public static class Constants
{
public static class Projects
{
public const string Api = "Vegasco-Server-Api";
}
public static class Database
{
public const string ServiceName = "postgres";
public const string Name = "vegasco-database";
}
}