Code styling.

This commit is contained in:
2019-03-11 19:22:26 +00:00
parent e14c19279a
commit 7610f4f779
11 changed files with 142 additions and 98 deletions

View File

@@ -47,13 +47,17 @@ namespace DiscImageChef.CommonTypes.Metadata
[XmlRoot("DicResume", Namespace = "", IsNullable = false)]
public class Resume
{
[XmlElement(DataType = "dateTime")] public DateTime CreationDate;
[XmlElement(DataType = "dateTime")] public DateTime LastWriteDate;
public bool Removable;
public ulong LastBlock;
public ulong NextBlock;
[XmlElement(DataType = "dateTime")]
public DateTime CreationDate;
[XmlElement(DataType = "dateTime")]
public DateTime LastWriteDate;
public bool Removable;
public ulong LastBlock;
public ulong NextBlock;
[XmlArrayItem("DumpTry")] public List<DumpHardwareType> Tries;
[XmlArrayItem("Block")] public List<ulong> BadBlocks;
[XmlArrayItem("DumpTry")]
public List<DumpHardwareType> Tries;
[XmlArrayItem("Block")]
public List<ulong> BadBlocks;
}
}