2016-01-31 05:51:53 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
2015-06-04 13:15:54 -04:00
|
|
|
|
|
2015-06-24 14:57:16 -04:00
|
|
|
|
namespace Filtration.ObjectModel.Enums
|
2015-06-04 13:15:54 -04:00
|
|
|
|
{
|
2016-01-31 05:51:53 -05:00
|
|
|
|
[Serializable]
|
2015-06-24 14:57:16 -04:00
|
|
|
|
public enum SocketColor
|
2015-06-04 13:15:54 -04:00
|
|
|
|
{
|
2016-01-31 05:51:53 -05:00
|
|
|
|
Yellow,
|
2015-06-04 13:15:54 -04:00
|
|
|
|
[Description("R")]
|
|
|
|
|
Red,
|
|
|
|
|
[Description("G")]
|
|
|
|
|
Green,
|
|
|
|
|
[Description("B")]
|
|
|
|
|
Blue,
|
|
|
|
|
[Description("W")]
|
|
|
|
|
White
|
|
|
|
|
}
|
|
|
|
|
}
|