using System; using TINK.Model.Services.CopriApi.ServerUris; namespace TINK.Services.CopriApi.ServerUris { public static class CopriHelper { public const string SHAREE_SILTEFOLDERNAME = "site"; /// Gets a value indicating whether a host is copri or not. /// Host name. /// True if server is copri, fals if not. public static bool GetIsCopri(this string hostName) => new Uri(CopriServerUriList.TINK_DEVEL).Host == hostName || new Uri(CopriServerUriList.TINK_LIVE).Host == hostName; } }