RandomValueType.cs 313 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shaker.Models
  8. {
  9. public enum RandomValueType
  10. {
  11. [Description("Value")]
  12. Value,
  13. [Description("Slope")]
  14. Slope,
  15. }
  16. }