SessionStreamDispatcherAttribute.cs 245 B

1234567891011121314
  1. using System;
  2. namespace ET
  3. {
  4. public class SessionStreamDispatcherAttribute: BaseAttribute
  5. {
  6. public int Type;
  7. public SessionStreamDispatcherAttribute(int type)
  8. {
  9. this.Type = type;
  10. }
  11. }
  12. }