[Aaru.Filesystems] Reformat and cleanup.

This commit is contained in:
2023-10-03 23:22:08 +01:00
parent 51f35c80d9
commit 7a608e0061
296 changed files with 21000 additions and 18286 deletions

View File

@@ -34,9 +34,14 @@ namespace Aaru.Filesystems;
/// <summary>Implements detection of the Smart File System</summary>
public sealed partial class SFS
{
#region Nested type: Flags
[Flags]
enum Flags : byte
{
RecycledFolder = 64, CaseSensitive = 128
RecycledFolder = 64,
CaseSensitive = 128
}
#endregion
}