namespace PKHeX.Core { /// /// Batch Editor Modification result for an individual . /// internal enum ModifyResult { /// /// The has invalid data and is not a suitable candidate for modification. /// Invalid, /// /// An error was occurred while iterating modifications for this . /// Error, /// /// The was skipped due to a matching Filter. /// Filtered, /// /// The was modified. /// Modified, } }