19 lines
351 B
C#
19 lines
351 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvMEP
|
|||
|
|
{
|
|||
|
|
public enum RotationAngle
|
|||
|
|
{
|
|||
|
|
[Description("22.5°")]
|
|||
|
|
TwentyTwoPointFive,
|
|||
|
|
[Description("30°")]
|
|||
|
|
Thirty,
|
|||
|
|
[Description("45°")]
|
|||
|
|
FortyFive,
|
|||
|
|
[Description("60°")]
|
|||
|
|
Sixty,
|
|||
|
|
[Description("90°")]
|
|||
|
|
Ninety
|
|||
|
|
}
|
|||
|
|
}
|