RotateType.cs 149 B

123456789
  1. namespace PaintDotNet.Measurement.Enum
  2. {
  3. public enum RotateType
  4. {
  5. Clockwise90,
  6. CounterClockwise90,
  7. Rotate180
  8. }
  9. }