Conflicts: src/Umbraco.Core/Sync/DefaultServerMessenger.cs src/Umbraco.Tests/Services/ContentServiceTests.cs
14 lines
368 B
C#
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
|
|
}
|
|
} |