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