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

@@ -41,21 +41,31 @@ namespace Aaru.DiscImages
{
public partial class Nhdr0
{
public string Name => "T98-Next NHD r0 Disk Image";
public Guid Id => new Guid("6ECACD0A-8F4D-4465-8815-AEA000D370E3");
public ImageInfo Info => imageInfo;
public string Author => "Natalia Portillo";
public string Format => "NHDr0 disk image";
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.GENERIC_HDD, MediaType.Unknown};
public string Name => "T98-Next NHD r0 Disk Image";
public Guid Id => new Guid("6ECACD0A-8F4D-4465-8815-AEA000D370E3");
public ImageInfo Info => imageInfo;
public string Author => "Natalia Portillo";
public string Format => "NHDr0 disk image";
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.GENERIC_HDD, MediaType.Unknown
};
// TODO: Support dynamic images
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[] {".nhd"};
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[]
{
".nhd"
};
public bool IsWriting { get; private set; }
public string ErrorMessage { get; private set; }
}
}