mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
24 lines
411 B
C#
24 lines
411 B
C#
using System.ComponentModel;
|
|
|
|
namespace Bloxstrap.Enums
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum WebEnvironment
|
|
{
|
|
[Description("prod")]
|
|
Production,
|
|
|
|
[Description("stage")]
|
|
Staging,
|
|
|
|
[Description("int")]
|
|
Integration,
|
|
|
|
[Description("matt")]
|
|
IntegrationMatt,
|
|
|
|
[Description("local")]
|
|
Local
|
|
}
|
|
}
|