using System;
namespace MPF.Processors.OutputFiles
{
///
/// Represents attributes about an
///
[Flags]
public enum OutputFileFlags : ushort
{
///
/// Default state
///
None = 0x0000,
///
/// File is required to exist
///
Required = 0x0001,
///
/// File is included as an artifact
///
Artifact = 0x0002,
///
/// File is included as a binary artifact
///
Binary = 0x0004,
///
/// File can be deleted after processing
///
Deleteable = 0x0008,
///
/// File can be zipped after processing
///
Zippable = 0x0010,
///
/// File should be preserved after zipping
///
Preserve = 0x0020,
}
}