Files
Umbraco-CMS/src/Umbraco.Core/Sync/IServerAddress.cs

16 lines
368 B
C#
Raw Normal View History

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; }
// TODO: Should probably add things like port, protocol, server name, app id
2018-06-29 19:52:40 +02:00
}
}