mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-05 21:43:56 +00:00
9 lines
215 B
C#
9 lines
215 B
C#
namespace CleanArchitecture.IntegrationTests.Constants;
|
|
|
|
public static class Configuration
|
|
{
|
|
public const int RedisPort = 6379;
|
|
public const int MsSqlPort = 1433;
|
|
public const int RabbitMqPort = 5672;
|
|
}
|