您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

22 行
599 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Infrastructure
  7. {
  8. public static class Consts
  9. {
  10. public const string Developer = "Developer";
  11. public const string AdminRole = "Admin";
  12. public const string ModeratorRole = "Moderator";
  13. public const string Domain = "senso.farm";
  14. public const string ApiAddress = $"https://api.{Domain}";
  15. public const string HostAddress = $"https://{Domain}";
  16. public const string AppAddress = $"https://app.{Domain}";
  17. }
  18. }