12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Command
- {
-
-
-
-
- public class CommandUpdateEventArgs<T> : EventArgs
- {
-
-
-
- public IEnumerable<CommandUpdateInfo<T>> Commands { get; private set; }
-
-
-
-
- public CommandUpdateEventArgs(IEnumerable<CommandUpdateInfo<T>> commands)
- {
- Commands = commands;
- }
- }
- }
|