2015-06-04 18:15:54 +01:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2015-06-24 19:57:16 +01:00
|
|
|
|
namespace Filtration.ObjectModel.Enums
|
2015-06-04 18:15:54 +01:00
|
|
|
|
{
|
2015-06-24 19:57:16 +01:00
|
|
|
|
public enum SocketColor
|
2015-06-04 18:15:54 +01:00
|
|
|
|
{
|
|
|
|
|
[Description("R")]
|
|
|
|
|
Red,
|
|
|
|
|
[Description("G")]
|
|
|
|
|
Green,
|
|
|
|
|
[Description("B")]
|
|
|
|
|
Blue,
|
|
|
|
|
[Description("W")]
|
|
|
|
|
White
|
|
|
|
|
}
|
|
|
|
|
}
|