mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move to file scoped namespaces.
This commit is contained in:
@@ -35,23 +35,22 @@ using System.Text;
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
using Schemas;
|
||||
|
||||
namespace Aaru.Filesystems
|
||||
namespace Aaru.Filesystems;
|
||||
|
||||
// Information from test floppy images created with OS/2 HPOFS 2.0
|
||||
// Need to get IBM document GA32-0224 -> IBM 3995 Optical Library Dataserver Products: Optical Disk Format
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements identification of IBM's High Performance Optical File System</summary>
|
||||
public sealed partial class HPOFS : IFilesystem
|
||||
{
|
||||
// Information from test floppy images created with OS/2 HPOFS 2.0
|
||||
// Need to get IBM document GA32-0224 -> IBM 3995 Optical Library Dataserver Products: Optical Disk Format
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements identification of IBM's High Performance Optical File System</summary>
|
||||
public sealed partial class HPOFS : IFilesystem
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public FileSystemType XmlFsType { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public Encoding Encoding { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public string Name => "High Performance Optical File System";
|
||||
/// <inheritdoc />
|
||||
public Guid Id => new Guid("1b72dcd5-d031-4757-8a9f-8d2fb18c59e2");
|
||||
/// <inheritdoc />
|
||||
public string Author => "Natalia Portillo";
|
||||
}
|
||||
public FileSystemType XmlFsType { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public Encoding Encoding { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public string Name => "High Performance Optical File System";
|
||||
/// <inheritdoc />
|
||||
public Guid Id => new Guid("1b72dcd5-d031-4757-8a9f-8d2fb18c59e2");
|
||||
/// <inheritdoc />
|
||||
public string Author => "Natalia Portillo";
|
||||
}
|
||||
Reference in New Issue
Block a user