using System;
namespace PKHeX.Core;
///
/// Batch Editor Modification result for an individual processing operation.
///
[Flags]
public enum ModifyResult
{
///
/// No modifications were performed as a filter excluded it.
///
Filtered,
///
/// Not a suitable candidate for modification.
///
Skipped,
///
/// One or more modifications was successfully applied.
///
Modified,
///
/// An error was occurred while attempting modifications.
///
Error = 0x80,
}