Remove unneeded wrappers.
This commit is contained in:
@@ -26,118 +26,10 @@
|
|||||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
//
|
//
|
||||||
|
|
||||||
using apprepodbmgr.Core;
|
|
||||||
using Schemas;
|
using Schemas;
|
||||||
|
|
||||||
namespace apprepodbmgr.Eto
|
namespace CICMMetadataEditor
|
||||||
{
|
{
|
||||||
class DBEntryForEto
|
|
||||||
{
|
|
||||||
DbEntry _item;
|
|
||||||
|
|
||||||
public DBEntryForEto(DbEntry item)
|
|
||||||
{
|
|
||||||
_item = item;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long id
|
|
||||||
{
|
|
||||||
get { return _item.Id; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string developer
|
|
||||||
{
|
|
||||||
get { return _item.Developer; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string product
|
|
||||||
{
|
|
||||||
get { return _item.Product; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string version
|
|
||||||
{
|
|
||||||
get { return _item.Version; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string languages
|
|
||||||
{
|
|
||||||
get { return _item.Languages; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string architecture
|
|
||||||
{
|
|
||||||
get { return _item.Architecture; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string targetos
|
|
||||||
{
|
|
||||||
get { return _item.TargetOs; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string format
|
|
||||||
{
|
|
||||||
get { return _item.Format; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string description
|
|
||||||
{
|
|
||||||
get { return _item.Description; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public bool oem
|
|
||||||
{
|
|
||||||
get { return _item.Oem; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public bool upgrade
|
|
||||||
{
|
|
||||||
get { return _item.Upgrade; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public bool update
|
|
||||||
{
|
|
||||||
get { return _item.Update; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public bool source
|
|
||||||
{
|
|
||||||
get { return _item.Source; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public bool files
|
|
||||||
{
|
|
||||||
get { return _item.Files; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public bool Installer
|
|
||||||
{
|
|
||||||
get { return _item.Installer; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public byte[] xml
|
|
||||||
{
|
|
||||||
get { return _item.Xml; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public byte[] json
|
|
||||||
{
|
|
||||||
get { return _item.Json; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
public string mdid
|
|
||||||
{
|
|
||||||
get { return _item.Mdid; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
|
|
||||||
public DbEntry original
|
|
||||||
{
|
|
||||||
get { return _item; }
|
|
||||||
set { }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class StringEntry
|
class StringEntry
|
||||||
{
|
{
|
||||||
public string str { get; set; }
|
public string str { get; set; }
|
||||||
|
|||||||
Reference in New Issue
Block a user