SquareBoxDefectDelegateUtil.cs 363 Bytes
using System.Collections.Generic;

namespace OS.Spin.View.Utils
{
    public class SquareBoxDefectDelegateUtil
    {
        //声明委托 OS.Spin.View.MainView
        public delegate void SquareBoxDefectDelegate(List<ControlUserOne> userControOnes);
        //创建一个委托实例
        public SquareBoxDefectDelegate squareBoxDefectDelegate;
    }
}