20 lines
404 B
C#
20 lines
404 B
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace Filtration.ObjectModel.Enums
|
|||
|
{
|
|||
|
public enum IconShape
|
|||
|
{
|
|||
|
[Description("Circle")]
|
|||
|
Circle,
|
|||
|
[Description("Diamond")]
|
|||
|
Diamond,
|
|||
|
[Description("Hexagon")]
|
|||
|
Hexagon,
|
|||
|
[Description("Square")]
|
|||
|
Square,
|
|||
|
[Description("Star")]
|
|||
|
Star,
|
|||
|
[Description("Triangle")]
|
|||
|
Triangle
|
|||
|
}
|
|||
|
}
|