jellyfin-server/MediaBrowser.Model/Drawing/ImageOrientation.cs
2014-08-27 21:27:46 -04:00

17 lines
292 B
C#

namespace MediaBrowser.Model.Drawing
{
public enum ImageOrientation
{
None = 0,
TopLeft = 1,
TopRight = 2,
BottomRight = 3,
BottomLeft = 4,
LeftTop = 5,
RightTop = 6,
RightBottom = 7,
LeftBottom = 8,
}
}