
/**
 * Defines the importance of an item.
 */
export enum Importance {
    
    /**
     * Low importance.
     */
    Low = 0,
    
    /**
     * Normal importance.
     */
    Normal = 1,
    
    /**
     * High importance.
     */
    High = 2
}