2018-06-29 19:52:40 +02:00
|
|
|
|
namespace Umbraco.Core.Sync
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Provides the address of a server.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IServerAddress
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the server address.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
string ServerAddress { get; }
|
|
|
|
|
|
|
2019-01-27 01:17:32 -05:00
|
|
|
|
// TODO: Should probably add things like port, protocol, server name, app id
|
2018-06-29 19:52:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|