mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
* add web environments * add comment * update enum name * fixes and improvements * add new enum value * update enum names
27 lines
445 B
C#
27 lines
445 B
C#
using System.ComponentModel;
|
|
|
|
namespace Bloxstrap.Enums
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum WebEnvironment
|
|
{
|
|
[Description("prod")]
|
|
Production,
|
|
|
|
[Description("stage")]
|
|
Staging,
|
|
|
|
[Description("dev")]
|
|
Dev,
|
|
|
|
[Description("pizza")]
|
|
DevPizza,
|
|
|
|
[Description("matt")]
|
|
DevMatt,
|
|
|
|
[Description("local")]
|
|
Local
|
|
}
|
|
}
|