8 lines
291 B
C#
8 lines
291 B
C#
|
namespace app.Configuration {
|
|||
|
public static class Constants {
|
|||
|
public const string CustomerEnvironmentVariable = "CUSTOMER";
|
|||
|
public const string ComputerNameEnvironmentVariable = "COMPUTERNAME";
|
|||
|
public const string CustomersDirectoryName = "customers";
|
|||
|
}
|
|||
|
}
|