WizardEntry

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WindowsFormsApplication3.FormPage.UserMode;

namespace WindowsFormsApplication3.Model
{
    public class WizardEntry
    {
        public BaseWizardForm fatherForm;
        public BaseWizardForm form;
        public List<BaseWizardForm> childForms;

        public WizardEntry(BaseWizardForm form, BaseWizardForm fatherForm,List<BaseWizardForm> childForms) {
            this.form = form;
            this.fatherForm = fatherForm;
            this.childForms = childForms;
        }
    }
}
posted on 2014-07-23 23:12  rosizel  阅读(134)  评论(0)    收藏  举报