using System; using System.Collections.Generic; using System.Text; namespace CZFW.Framework.Interface.Base { public interface IRemoveValidate { (bool result, string message) Validate(int id); } }