Guest User

Untitled

a guest
May 20th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. namespace Leste.Robot.Base
  2. {
  3. public enum Environment
  4. {
  5. Development = 0x01,
  6. Homologation = 0x02,
  7. Production = 0x04,
  8. /// <summary>
  9. /// Includes Development | Homologation | Production
  10. /// </summary>
  11. All = 0x07
  12. }
  13. }
Add Comment
Please, Sign In to add comment