mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using System;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
|
|
namespace Aaru.Archives;
|
|
|
|
public sealed partial class Ha : IArchive
|
|
{
|
|
#region IArchive Members
|
|
|
|
/// <inheritdoc />
|
|
public string Name => "HA";
|
|
/// <inheritdoc />
|
|
public Guid Id => new("2FB42964-82A0-4819-9C2D-CC2F24E35526");
|
|
/// <inheritdoc />
|
|
public string Author => Authors.NataliaPortillo;
|
|
/// <inheritdoc />
|
|
public bool Opened { get; }
|
|
/// <inheritdoc />
|
|
public ArchiveSupportedFeature ArchiveFeatures => ArchiveSupportedFeature.HasEntryTimestamp |
|
|
ArchiveSupportedFeature.SupportsCompression |
|
|
ArchiveSupportedFeature.SupportsFilenames |
|
|
ArchiveSupportedFeature.SupportsSubdirectories |
|
|
ArchiveSupportedFeature.HasExplicitDirectories;
|
|
/// <inheritdoc />
|
|
public int NumberOfEntries { get; }
|
|
|
|
#endregion
|
|
} |