16 lines
229 B
C#
16 lines
229 B
C#
namespace Umbraco.Web.Models
|
|
{
|
|
public enum ImageCropAnchor
|
|
{
|
|
Center,
|
|
Top,
|
|
Right,
|
|
Bottom,
|
|
Left,
|
|
TopLeft,
|
|
TopRight,
|
|
BottomLeft,
|
|
BottomRight
|
|
}
|
|
}
|