Files
Umbraco-CMS/src/Umbraco.Core/Sync/IServerAddress.cs
Shannon 7dfa633fb3 Merge remote-tracking branch 'origin/6.2.2' into 7.1.5
Conflicts:
	src/Umbraco.Core/Sync/DefaultServerMessenger.cs
	src/Umbraco.Tests/Services/ContentServiceTests.cs
2014-08-05 12:49:51 -06:00

14 lines
368 B
C#

using Umbraco.Core.Models.EntityBase;
namespace Umbraco.Core.Sync
{
/// <summary>
/// An interface exposing a server address to use for server syncing
/// </summary>
public interface IServerAddress
{
string ServerAddress { get; }
//TODO : Should probably add things like port, protocol, server name, app id
}
}