DisplayMagician/DisplayMagician.Shared/Rotation.cs
Terry MacDonald 415ff0eed0 Rename HeliosPlus to DisplayMagician
Decided to rename the application to DisplayMagician
to make it way more discoverable. Turns out there are
a LOT of applications named HeliosPlus!
2020-12-02 21:11:23 +13:00

11 lines
166 B
C#

namespace DisplayMagician.Shared
{
public enum Rotation
{
Identity,
Rotate90,
Rotate180,
Rotate270,
Unknown
}
}