123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Command
- {
-
-
-
- public enum CommandUpdateAction
- {
-
-
-
- Add,
-
-
-
- Remove,
-
-
-
- Update
- }
-
-
-
-
- public class CommandUpdateInfo<T>
- {
-
-
-
-
-
-
- public CommandUpdateAction UpdateAction { get; set; }
-
-
-
-
-
-
- public T Command { get; set; }
- }
- }
|