HubsConstant.cs 464 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Infrastructure.Constant
  7. {
  8. public class HubsConstant
  9. {
  10. private const string V = "receiveNotice";
  11. public static string ReceiveNotice = V;
  12. public static string OnlineNum = "onlineNum";
  13. public static string MoreNotice = "moreNotice";
  14. public static string OnlineUser = "onlineUser";
  15. }
  16. }