Topic.cs 647 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shaker.Model
  7. {
  8. public sealed class Topic
  9. {
  10. public const string SERVICERESULT = "ServiceResult";
  11. public const string STOP = "Stop";
  12. public const string STRAT = "Start";
  13. /// <summary>
  14. /// The port number of the discovery server.
  15. /// </summary>
  16. public const int DISCOVERYPORT = 16656;
  17. public const string MulticastGroup = "239.1.0.3";
  18. public const string LOG="Log";
  19. public const string MIANWINDOWTOAST = "MainWindowToast";
  20. }
  21. }