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;
        }
    }
}

WizardEntry,布布扣,bubuko.com

时间: 2024-08-01 10:46:43

WizardEntry的相关文章