From 119250bbf2052fb76b7578cf95d95f76fc78e987 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 15 Apr 2019 01:00:39 +0100 Subject: [PATCH] Add FileAttributes.None for no attributes. --- DiscImageChef.CommonTypes/Structs/Filesystems.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DiscImageChef.CommonTypes/Structs/Filesystems.cs b/DiscImageChef.CommonTypes/Structs/Filesystems.cs index 153f624b3..19eeb54b5 100644 --- a/DiscImageChef.CommonTypes/Structs/Filesystems.cs +++ b/DiscImageChef.CommonTypes/Structs/Filesystems.cs @@ -48,6 +48,8 @@ namespace DiscImageChef.CommonTypes.Structs [Flags] public enum FileAttributes : ulong { + /// File has no attributes + None = 0, /// File is an alias (Mac OS) Alias = 0x01, /// Indicates that the file can only be writable appended