Implement CopyTape reading.

This commit is contained in:
2019-05-06 20:21:57 +01:00
parent ca1a226c50
commit c963a56af3
4 changed files with 170 additions and 10 deletions

View File

@@ -39,15 +39,15 @@ namespace DiscImageChef.DiscImages.CopyTape
{
public partial class CopyTape
{
public ImageInfo Info { get; }
public ImageInfo Info => imageInfo;
public string Name => "CopyTape";
public Guid Id => new Guid("C537D41E-D6A7-4922-9AA9-8E8442D0E340");
public string Author => "Natalia Portillo";
public string Format => "CopyTape";
public List<DumpHardwareType> DumpHardware => null;
public CICMMetadataType CicmMetadata => null;
public List<TapeFile> Files { get; }
public List<TapePartition> TapePartitions { get; }
public List<TapeFile> Files { get; private set; }
public List<TapePartition> TapePartitions { get; set; }
public bool IsTape => true;
}
}