mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
|
|
using System.Collections.Generic;
|
||
|
|
using DiscImageChef.CommonTypes.Enums;
|
||
|
|
using DiscImageChef.CommonTypes.Interfaces;
|
||
|
|
using DiscImageChef.CommonTypes.Structs;
|
||
|
|
|
||
|
|
namespace DiscImageChef.DiscImages.CopyTape
|
||
|
|
{
|
||
|
|
public partial class CopyTape : ITapeImage
|
||
|
|
{
|
||
|
|
public CopyTape()
|
||
|
|
{
|
||
|
|
Info = new ImageInfo
|
||
|
|
{
|
||
|
|
ReadableSectorTags = new List<SectorTagType>(),
|
||
|
|
ReadableMediaTags = new List<MediaTagType>(),
|
||
|
|
HasPartitions = true,
|
||
|
|
HasSessions = true,
|
||
|
|
Version = null,
|
||
|
|
ApplicationVersion = null,
|
||
|
|
MediaTitle = null,
|
||
|
|
Creator = null,
|
||
|
|
MediaManufacturer = null,
|
||
|
|
MediaModel = null,
|
||
|
|
MediaPartNumber = null,
|
||
|
|
MediaSequence = 0,
|
||
|
|
LastMediaSequence = 0,
|
||
|
|
DriveManufacturer = null,
|
||
|
|
DriveModel = null,
|
||
|
|
DriveSerialNumber = null,
|
||
|
|
DriveFirmwareRevision = null
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|