mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile, DatItem] Software list items can have "duplicate keys"
This commit is contained in:
@@ -31,10 +31,10 @@ namespace SabreTools.Helper
|
||||
// Software list information
|
||||
protected bool? _supported;
|
||||
protected string _publisher;
|
||||
protected Dictionary<string, string> _infos;
|
||||
protected List<Tuple<string, string>> _infos;
|
||||
protected string _partName;
|
||||
protected string _partInterface;
|
||||
protected Dictionary<string, string> _features;
|
||||
protected List<Tuple<string, string>> _features;
|
||||
protected string _areaName;
|
||||
protected long? _areaSize;
|
||||
|
||||
@@ -138,7 +138,7 @@ namespace SabreTools.Helper
|
||||
get { return _publisher; }
|
||||
set { _publisher = value; }
|
||||
}
|
||||
public Dictionary<string, string> Infos
|
||||
public List<Tuple<string, string>> Infos
|
||||
{
|
||||
get { return _infos; }
|
||||
set { _infos = value; }
|
||||
@@ -153,7 +153,7 @@ namespace SabreTools.Helper
|
||||
get { return _partInterface; }
|
||||
set { _partInterface = value; }
|
||||
}
|
||||
public Dictionary<string, string> Features
|
||||
public List<Tuple<string, string>> Features
|
||||
{
|
||||
get { return _features; }
|
||||
set { _features = value; }
|
||||
|
||||
Reference in New Issue
Block a user