//----------------------------------------------------------------------- // // Copyright (c) 2016 Mapbox. All rights reserved. // //----------------------------------------------------------------------- namespace Mapbox.Platform { using System; /// /// Interface representing a Mapbox resource URL. Used to build request strings /// and return full URLs to a Mapbox Web Service API resource. /// public interface IResource { /// Builds a complete, valid URL string. /// URL string. string GetUrl(); } }