mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Start creating Dictionary-based internal models
This commit is contained in:
36
SabreTools.Models/Internal/Device.cs
Normal file
36
SabreTools.Models/Internal/Device.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System.Xml.Serialization;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace SabreTools.Models.Internal
|
||||
{
|
||||
[JsonObject("device"), XmlRoot("device")]
|
||||
public class Device : DatItem
|
||||
{
|
||||
#region Keys
|
||||
|
||||
/// <remarks>Extension[]</remarks>
|
||||
public const string ExtensionKey = "extension";
|
||||
|
||||
/// <remarks>string</remarks>
|
||||
public const string FixedImageKey = "fixed_image";
|
||||
|
||||
/// <remarks>Instance</remarks>
|
||||
public const string InstanceKey = "instance";
|
||||
|
||||
/// <remarks>string</remarks>
|
||||
public const string InterfaceKey = "interface";
|
||||
|
||||
/// <remarks>(0|1) "0"</remarks>
|
||||
public const string MandatoryKey = "mandatory";
|
||||
|
||||
/// <remarks>string</remarks>
|
||||
public const string TagKey = "tag";
|
||||
|
||||
/// <remarks>(unknown|cartridge|floppydisk|harddisk|cylinder|cassette|punchcard|punchtape|printout|serial|parallel|snapshot|quickload|memcard|cdrom|magtape|romimage|midiin|midiout|picture|vidfile)</remarks>
|
||||
public const string DeviceTypeKey = "type";
|
||||
|
||||
#endregion
|
||||
|
||||
public Device() => Type = ItemType.Device;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user