using System.ComponentModel;
namespace SWRIS.Enums
{
public enum LayType
{
///
/// 右交互捻
///
[Description("右交互捻")]
ZS = 1,
///
/// 左交互捻
///
[Description("左交互捻")]
SZ = 2,
///
/// 右同向捻
///
[Description("右同向捻")]
ZZ = 3,
///
/// 左同向捻
///
[Description("左同向捻")]
SS = 4,
}
}