Added ObjectModelReference for Rebel Software Installation Script

This commit is contained in:
Michael Becker 2015-04-21 08:25:18 -04:00
parent c87e46da5e
commit 27f4addba4

View File

@ -7,6 +7,22 @@ namespace UniversalEditor.ObjectModels.RebelSoftware.InstallationScript
{
public class InstallationScriptObjectModel : ObjectModel
{
private static ObjectModelReference _omr = null;
protected override ObjectModelReference MakeReferenceInternal()
{
if (_omr == null)
{
_omr = base.MakeReferenceInternal();
_omr.Title = "Installation Script";
_omr.Path = new string[]
{
"Setup",
"Rebel Software"
};
}
return _omr;
}
private string mvarProductName = String.Empty;
public string ProductName { get { return mvarProductName; } set { mvarProductName = value; } }