DisplayMagician/DisplayMagician.Shared/Scaling.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

13 lines
218 B
C#

namespace DisplayMagician.Shared
{
public enum Scaling
{
NotSpecified,
Identity,
Centered,
Stretched,
AspectRatioCenteredMax,
Custom,
Preferred
}
}