using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Web;
public static class DeploymentSlotExtensions
{
///
/// Gets the deployment slot web address.
///
/// The slot.
///
public static String ToAddress(this DeploymentSlot slot)
{
return slot.GetAttribute().Address;
}
}