using System.ComponentModel;
namespace Filtration.ObjectModel.Enums
{
///
/// Each of the sizes supported by the MinimapIcon block rule.
///
///
/// The ordering here should match the ordering of the sizes within the source image.
///
public enum IconSize
{
[Description("Largest")]
Largest,
[Description("Medium")]
Medium,
[Description("Small")]
Small
}
}