public static string GetName(this FieldTracking value)
        {
            var fi         = typeof(FieldTracking).GetField(value.ToString());
            var attributes = (DescriptionAttribute[])fi.GetCustomAttributes(typeof(DescriptionAttribute), false);

            return(attributes.Length > 0 ? attributes[0].Description : value.ToString());
        }