MessageServiceConfig.cs 351 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TF.Config
  5. {
  6. public class MessageServiceConfig
  7. {
  8. /// <summary>
  9. ///
  10. /// </summary>
  11. public string ServiceUrl { get; set; }
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. public string Token { get; set; }
  16. }
  17. }