選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021
  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. }