mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code restyling.
This commit is contained in:
@@ -43,25 +43,30 @@ namespace Aaru.DiscImages
|
||||
{
|
||||
public ImageInfo Info => imageInfo;
|
||||
|
||||
public string Name => "QEMU Copy-On-Write disk image v2";
|
||||
public Guid Id => new Guid("F20107CB-95B3-4398-894B-975261F1E8C5");
|
||||
public string Author => "Natalia Portillo";
|
||||
public string Format => "QEMU Copy-On-Write";
|
||||
public List<DumpHardwareType> DumpHardware => null;
|
||||
public CICMMetadataType CicmMetadata => null;
|
||||
public IEnumerable<MediaTagType> SupportedMediaTags => new MediaTagType[] { };
|
||||
public IEnumerable<SectorTagType> SupportedSectorTags => new SectorTagType[] { };
|
||||
public IEnumerable<MediaType> SupportedMediaTypes =>
|
||||
new[]
|
||||
{
|
||||
MediaType.Unknown, MediaType.GENERIC_HDD, MediaType.FlashDrive, MediaType.CompactFlash,
|
||||
MediaType.CompactFlashType2, MediaType.PCCardTypeI, MediaType.PCCardTypeII, MediaType.PCCardTypeIII,
|
||||
MediaType.PCCardTypeIV
|
||||
};
|
||||
public string Name => "QEMU Copy-On-Write disk image v2";
|
||||
public Guid Id => new Guid("F20107CB-95B3-4398-894B-975261F1E8C5");
|
||||
public string Author => "Natalia Portillo";
|
||||
public string Format => "QEMU Copy-On-Write";
|
||||
public List<DumpHardwareType> DumpHardware => null;
|
||||
public CICMMetadataType CicmMetadata => null;
|
||||
public IEnumerable<MediaTagType> SupportedMediaTags => new MediaTagType[]
|
||||
{};
|
||||
public IEnumerable<SectorTagType> SupportedSectorTags => new SectorTagType[]
|
||||
{};
|
||||
public IEnumerable<MediaType> SupportedMediaTypes => new[]
|
||||
{
|
||||
MediaType.Unknown, MediaType.GENERIC_HDD, MediaType.FlashDrive, MediaType.CompactFlash,
|
||||
MediaType.CompactFlashType2, MediaType.PCCardTypeI, MediaType.PCCardTypeII, MediaType.PCCardTypeIII,
|
||||
MediaType.PCCardTypeIV
|
||||
};
|
||||
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions =>
|
||||
new (string name, Type type, string description, object @default)[] { };
|
||||
public IEnumerable<string> KnownExtensions => new[] {".qcow2", ".qc2", ".qcow3", ".qc3"};
|
||||
public bool IsWriting { get; private set; }
|
||||
public string ErrorMessage { get; private set; }
|
||||
new (string name, Type type, string description, object @default)[]
|
||||
{};
|
||||
public IEnumerable<string> KnownExtensions => new[]
|
||||
{
|
||||
".qcow2", ".qc2", ".qcow3", ".qc3"
|
||||
};
|
||||
public bool IsWriting { get; private set; }
|
||||
public string ErrorMessage { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user