using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.Base.Enum
{
public enum Structure
{
///
/// 常规
///
conventional,
///
/// 水平
///
horizon,
///
/// 45度角
///
angle45,
///
/// 垂直
///
vertical,
///
/// 135度角
///
angle135,
///
/// 交叉
///
cross,
///
/// 平方
///
square,
///
/// 八边形
///
octagon
}
}