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