26 lines
700 B
C#
26 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xamarin.Forms;
|
|
|
|
namespace BookAStar
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string ApplicationName = "Booking Star";
|
|
|
|
#region Uri
|
|
|
|
public const string YavscHomeUrl = "http://dev.pschneider.fr";
|
|
public static readonly string YavscApiUrl = YavscHomeUrl + "/api";
|
|
public static readonly string MobileRegistrationUrl = YavscApiUrl + "/gcm/register";
|
|
public static readonly string UserInfoUrl = YavscApiUrl + "/me";
|
|
public static readonly string BlogUrl = YavscApiUrl + "/blogs";
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|