Add dumping info section skeleton

This commit is contained in:
Matt Nadareski
2022-10-06 10:25:27 -07:00
parent a72b3c32b1
commit 2f3e7d105d
2 changed files with 20 additions and 0 deletions

View File

@@ -133,6 +133,7 @@
- Add unused command filename parser
- Add initial framework for reporting dumping program
- Report specific DIC version, if possible
- Add dumping info section skeleton
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

@@ -41,6 +41,9 @@ namespace RedumpLib.Data
[JsonProperty(PropertyName = "common_disc_info", DefaultValueHandling = DefaultValueHandling.Ignore)]
public CommonDiscInfoSection CommonDiscInfo { get; set; } = new CommonDiscInfoSection();
[JsonProperty(PropertyName = "dumping_info", DefaultValueHandling = DefaultValueHandling.Ignore)]
public DumpingInfoSection DumpingInfo { get; set; } = new DumpingInfoSection();
[JsonProperty(PropertyName = "versions_and_editions", DefaultValueHandling = DefaultValueHandling.Ignore)]
public VersionAndEditionsSection VersionAndEditions { get; set; } = new VersionAndEditionsSection();
@@ -279,6 +282,22 @@ namespace RedumpLib.Data
}
}
/// <summary>
/// Dumping info section for moderation
/// </summary>
public class DumpingInfoSection : ICloneable
{
// TODO: Add properties here
public object Clone()
{
return new DumpingInfoSection
{
// TODO: Add properties here
};
}
}
/// <summary>
/// Version and editions section of New Disc form
/// </summary>