mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile, DatItem] Add specifics for software list update
This commit is contained in:
@@ -28,6 +28,16 @@ namespace SabreTools.Helper
|
||||
protected string _board;
|
||||
protected string _rebuildTo;
|
||||
|
||||
// Software list information
|
||||
protected bool? _supported;
|
||||
protected string _publisher;
|
||||
protected Dictionary<string, string> _infos;
|
||||
protected string _partName;
|
||||
protected string _partInterface;
|
||||
protected Dictionary<string, string> _features;
|
||||
protected string _areaName;
|
||||
protected long? _areaSize;
|
||||
|
||||
// Source metadata information
|
||||
protected int _systemId;
|
||||
protected string _systemName;
|
||||
@@ -117,6 +127,48 @@ namespace SabreTools.Helper
|
||||
set { _rebuildTo = value; }
|
||||
}
|
||||
|
||||
// Software list information
|
||||
public bool? Supported
|
||||
{
|
||||
get { return _supported; }
|
||||
set { _supported = value; }
|
||||
}
|
||||
public string Publisher
|
||||
{
|
||||
get { return _publisher; }
|
||||
set { _publisher = value; }
|
||||
}
|
||||
public Dictionary<string, string> Infos
|
||||
{
|
||||
get { return _infos; }
|
||||
set { _infos = value; }
|
||||
}
|
||||
public string PartName
|
||||
{
|
||||
get { return _partName; }
|
||||
set { _partName = value; }
|
||||
}
|
||||
public string PartInterface
|
||||
{
|
||||
get { return _partInterface; }
|
||||
set { _partInterface = value; }
|
||||
}
|
||||
public Dictionary<string, string> Features
|
||||
{
|
||||
get { return _features; }
|
||||
set { _features = value; }
|
||||
}
|
||||
public string AreaName
|
||||
{
|
||||
get { return _areaName; }
|
||||
set { _areaName = value; }
|
||||
}
|
||||
public long? AreaSize
|
||||
{
|
||||
get { return _areaSize; }
|
||||
set { _areaSize = value; }
|
||||
}
|
||||
|
||||
// Source metadata information
|
||||
public int SystemID
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user