using SmartCoalApplication.Rule; namespace SmartCoalApplication { internal class WorkspaceWidgets { private AppWorkspace workspace; private DocumentStrip documentStrip; public DocumentStrip DocumentStrip { get { return this.documentStrip; } set { this.documentStrip = value; } } private ViewConfigStrip viewConfigStrip; public ViewConfigStrip ViewConfigStrip { get { return this.viewConfigStrip; } set { this.viewConfigStrip = value; } } private CommonActionsStrip commonActionsStrip; public CommonActionsStrip CommonActionsStrip { get { return this.commonActionsStrip; } set { this.commonActionsStrip = value; } } private IStatusBarProgress statusBarProgress; public IStatusBarProgress StatusBarProgress { get { return this.statusBarProgress; } set { this.statusBarProgress = value; } } private RuleListForm ruleListForm; public RuleListForm RuleListForm { get { return this.ruleListForm; } set { this.ruleListForm = value; } } public WorkspaceWidgets(AppWorkspace workspace) { this.workspace = workspace; } } }