ICommand.cs 220 B

12345678910111213
  1. namespace IFramework
  2. {
  3. /// <summary>
  4. /// 命令
  5. /// </summary>
  6. public interface ICommand:IEventArgs
  7. {
  8. /// <summary>
  9. /// 处理
  10. /// </summary>
  11. void Excute();
  12. }
  13. }