update replace menu

This commit is contained in:
vfedosevich 2014-02-28 12:45:25 +03:00
parent 884183a2ce
commit 536447fd36
10 changed files with 35 additions and 10 deletions

View file

@ -45,6 +45,7 @@ namespace WebsitePanel.WebPortal
private Dictionary<string, ContentPane> contentPanes = new Dictionary<string, ContentPane>();
private string url;
private string target;
private string align;
public string Name
{
@ -108,5 +109,11 @@ namespace WebsitePanel.WebPortal
get { return this.target; }
set { this.target = value; }
}
public string Align
{
get { return this.align; }
set { this.align = value; }
}
}
}