Constants.cs 241 B

123456789101112
  1. using System;
  2. namespace DevDaysTasks
  3. {
  4. public static class Constants
  5. {
  6. // Replace strings with your mobile services and gateway URLs.
  7. public static string ApplicationURL =
  8. @"https://motzcoffee.azurewebsites.net";
  9. }
  10. }