9 lines
114 B
C#
9 lines
114 B
C#
|
namespace CodeLiturgy.Data.Capital;
|
||
|
|
||
|
public enum EnvironmentType
|
||
|
{
|
||
|
Development,
|
||
|
Staging,
|
||
|
Production
|
||
|
}
|