using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.Base.Enum
{
public enum TagLocation
{
///
/// 左上
///
UpLeft,
///
/// 右上
///
UpRight,
///
///左下
///
DownLeft,
///
///右下
///
DownRight
}
}