using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.Base.Enum
{
///
/// 二值样式
///
public enum FieldOfViewParameters
{
///
/// 样式1
///
One,
///
/// 样式2
///
Two,
///
/// 样式3
///
Three
}
}