15 lines
256 B
C#
15 lines
256 B
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace Filtration.ObjectModel.Enums
|
|||
|
{
|
|||
|
public enum IconSize
|
|||
|
{
|
|||
|
[Description("Largest")]
|
|||
|
Largest,
|
|||
|
[Description("Medium")]
|
|||
|
Medium,
|
|||
|
[Description("Small")]
|
|||
|
Small
|
|||
|
}
|
|||
|
}
|