mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add some more models (nw)
This commit is contained in:
51
SabreTools.Models/OfflineList/Game.cs
Normal file
51
SabreTools.Models/OfflineList/Game.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System.Xml;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace SabreTools.Models.OfflineList
|
||||
{
|
||||
[XmlRoot("game")]
|
||||
public class Game
|
||||
{
|
||||
[XmlElement("imageNumber")]
|
||||
public string? ImageNumber { get; set; }
|
||||
|
||||
[XmlElement("releaseNumber")]
|
||||
public string? ReleaseNumber { get; set; }
|
||||
|
||||
[XmlElement("title")]
|
||||
public string? Title { get; set; }
|
||||
|
||||
[XmlElement("saveType")]
|
||||
public string? SaveType { get; set; }
|
||||
|
||||
[XmlElement("romSize")]
|
||||
public long? RomSize { get; set; }
|
||||
|
||||
[XmlElement("publisher")]
|
||||
public string? Publisher { get; set; }
|
||||
|
||||
[XmlElement("location")]
|
||||
public string? Location { get; set; }
|
||||
|
||||
[XmlElement("sourceRom")]
|
||||
public string? SourceRom { get; set; }
|
||||
|
||||
[XmlElement("language")]
|
||||
public string? Language { get; set; }
|
||||
|
||||
[XmlElement("files")]
|
||||
public Files? Files { get; set; }
|
||||
|
||||
[XmlElement("im1CRC")]
|
||||
public string? Im1CRC { get; set; }
|
||||
|
||||
[XmlElement("im2CRC")]
|
||||
public string? Im2CRC { get; set; }
|
||||
|
||||
[XmlElement("comment")]
|
||||
public string? Comment { get; set; }
|
||||
|
||||
[XmlElement("duplicateId")]
|
||||
public string? DuplicateID { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user