Colors.cs 151 B

123456789101112
  1. using System;
  2. namespace Jint.Tests.Runtime.Domain
  3. {
  4. [Flags]
  5. public enum Colors
  6. {
  7. Red,
  8. Green,
  9. Blue = 10
  10. }
  11. }