mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-22 01:34:51 -05:00
27 lines
591 B
C#
27 lines
591 B
C#
namespace NHSE.Core;
|
|
|
|
/// <summary>
|
|
/// Batch Editor Modification result for an individual item.
|
|
/// </summary>
|
|
public enum ModifyResult
|
|
{
|
|
/// <summary>
|
|
/// The data has invalid data and is not a suitable candidate for modification.
|
|
/// </summary>
|
|
Invalid,
|
|
|
|
/// <summary>
|
|
/// An error was occurred while iterating modifications for this data.
|
|
/// </summary>
|
|
Error,
|
|
|
|
/// <summary>
|
|
/// The data was skipped due to a matching Filter.
|
|
/// </summary>
|
|
Filtered,
|
|
|
|
/// <summary>
|
|
/// The data was modified.
|
|
/// </summary>
|
|
Modified,
|
|
} |