Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

22 rader
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. }