NotifyResponse.cs 409 B

12345678910111213141516171819
  1. using InABox.Clients;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace InABox.WebSocket.Shared
  8. {
  9. public class NotifyRequest : Request
  10. {
  11. public override RequestMethod GetMethod() => RequestMethod.Notify;
  12. }
  13. public class NotifyResponse : Response
  14. {
  15. public int? SocketPort { get; set; }
  16. }
  17. }