using System; using System.Collections.Generic; using System.Linq; using System.Text; using WindowsFormsApplication3.DataStorge; using WindowsFormsApplication3.FormPage; namespace WindowsFormsApplication3.Model { public class FormHierachy { public string fatherForm; public BaseWorkerForm childForm; public FormHierachy(string fatherForm, BaseWorkerForm childForm) { this.fatherForm = fatherForm; this.childForm = childForm; } } }
FormHierachy
时间: 2024-10-05 06:05:24