// dnlib: See LICENSE.txt for more info
using System;
namespace dnlib.DotNet {
///
/// File row flags. See CorHdr.h/CorFileFlags
///
[Flags]
public enum FileAttributes : uint {
/// This is not a resource file
ContainsMetadata = 0x0000,
/// This is a resource file or other non-metadata-containing file
ContainsNoMetadata = 0x0001,
}
}