//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;


namespace Css{
	
	/// <summary>
	/// Represents the position of a rounded corner of a border.
	/// </summary>
	
	public enum RoundCornerPosition:int{
		
		TopLeft=0,
		TopRight=1,
		BottomLeft=3,
		BottomRight=2
		
	}
	
}