mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile, Machine] Allow for device references
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
using SabreTools.Helper.Data;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using SabreTools.Helper.Data;
|
||||
|
||||
namespace SabreTools.Helper.Dats
|
||||
{
|
||||
@@ -19,6 +21,7 @@ namespace SabreTools.Helper.Dats
|
||||
protected bool _runnable;
|
||||
protected string _board;
|
||||
protected string _rebuildTo;
|
||||
protected List<string> _devices;
|
||||
protected MachineType _machineType;
|
||||
|
||||
#endregion
|
||||
@@ -86,6 +89,11 @@ namespace SabreTools.Helper.Dats
|
||||
get { return _rebuildTo; }
|
||||
set { _rebuildTo = value; }
|
||||
}
|
||||
public List<string> Devices
|
||||
{
|
||||
get { return _devices; }
|
||||
set { _devices = value; }
|
||||
}
|
||||
public MachineType MachineType
|
||||
{
|
||||
get { return _machineType; }
|
||||
|
||||
Reference in New Issue
Block a user