mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Reformatted.
This commit is contained in:
@@ -43,7 +43,7 @@ using DiscImageChef.Decoders.SCSI;
|
||||
namespace DiscImageChef.Metadata
|
||||
{
|
||||
[SerializableAttribute()]
|
||||
[XmlRootAttribute("DicDeviceReport", Namespace="", IsNullable=false)]
|
||||
[XmlRootAttribute("DicDeviceReport", Namespace = "", IsNullable = false)]
|
||||
public class DeviceReport
|
||||
{
|
||||
public usbType USB;
|
||||
@@ -412,7 +412,7 @@ namespace DiscImageChef.Metadata
|
||||
public class pageType
|
||||
{
|
||||
[XmlAttributeAttribute()]
|
||||
public byte page;
|
||||
public byte page;
|
||||
|
||||
[XmlTextAttribute()]
|
||||
public byte[] value;
|
||||
@@ -453,10 +453,10 @@ namespace DiscImageChef.Metadata
|
||||
public class modePageType
|
||||
{
|
||||
[XmlAttributeAttribute()]
|
||||
public byte page;
|
||||
public byte page;
|
||||
|
||||
[XmlAttributeAttribute()]
|
||||
public byte subpage;
|
||||
public byte subpage;
|
||||
|
||||
[XmlTextAttribute()]
|
||||
public byte[] value;
|
||||
@@ -641,7 +641,7 @@ namespace DiscImageChef.Metadata
|
||||
public bool DVDMultiRead;
|
||||
public bool EmbeddedChanger;
|
||||
public bool ErrorRecoveryPage;
|
||||
[XmlElementAttribute(DataType="date")]
|
||||
[XmlElementAttribute(DataType = "date")]
|
||||
public DateTime FirmwareDate;
|
||||
public byte LoadingMechanismType;
|
||||
public bool Locked;
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace DiscImageChef.Metadata
|
||||
{
|
||||
DimensionsType dmns = new DimensionsType();
|
||||
|
||||
switch (dskType)
|
||||
switch(dskType)
|
||||
{
|
||||
#region 5.25" floppy disk
|
||||
case CommonTypes.MediaType.Apple32SS:
|
||||
@@ -816,7 +816,7 @@ namespace DiscImageChef.Metadata
|
||||
dmns.DiameterSpecified = true;
|
||||
dmns.Thickness = 2.5;
|
||||
return dmns;
|
||||
|
||||
|
||||
#region CD/DVD/BD
|
||||
case CommonTypes.MediaType.CDDA:
|
||||
case CommonTypes.MediaType.CDG:
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace DiscImageChef.Metadata
|
||||
{
|
||||
public static void MediaTypeToString(CommonTypes.MediaType dskType, out string DiscType, out string DiscSubType)
|
||||
{
|
||||
switch (dskType)
|
||||
switch(dskType)
|
||||
{
|
||||
case CommonTypes.MediaType.BDR:
|
||||
DiscType = "BD";
|
||||
@@ -655,15 +655,15 @@ namespace DiscImageChef.Metadata
|
||||
case CommonTypes.MediaType.ZIP100:
|
||||
DiscType = "Iomega ZIP";
|
||||
DiscSubType = "Iomega ZIP100";
|
||||
break;
|
||||
break;
|
||||
case CommonTypes.MediaType.ZIP250:
|
||||
DiscType = "Iomega ZIP";
|
||||
DiscSubType = "Iomega ZIP250";
|
||||
break;
|
||||
break;
|
||||
case CommonTypes.MediaType.ZIP750:
|
||||
DiscType = "Iomega ZIP";
|
||||
DiscSubType = "Iomega ZIP750";
|
||||
break;
|
||||
break;
|
||||
default:
|
||||
DiscType = "Unknown";
|
||||
DiscSubType = "Unknown";
|
||||
|
||||
Reference in New Issue
Block a user