Code restyling.

This commit is contained in:
2020-02-29 18:03:35 +00:00
parent 4ea327f0c6
commit f7e173710e
855 changed files with 43605 additions and 38045 deletions

View File

@@ -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; }
}
}