IInputDataVerifiable.cs 275 B

123456789101112131415
  1. 
  2. namespace Dongke.WinForm.Controls
  3. {
  4. /// <summary>
  5. /// 输入控件自动验证接口
  6. /// </summary>
  7. public interface IInputDataVerifiable : IDataVerifiable
  8. {
  9. #region 属性
  10. #endregion
  11. #region 方法
  12. #endregion
  13. }
  14. }