Moved runtime abstractions and added SemVer + extensions to abstractions.

This commit is contained in:
Lars-Erik Aabech
2019-05-20 17:39:11 +02:00
parent facf13f6d5
commit f8bc25a2dd
6 changed files with 5 additions and 5 deletions

View File

@@ -1,28 +0,0 @@
namespace Umbraco.Core.Sync
{
/// <summary>
/// The role of a server in an application environment.
/// </summary>
public enum ServerRole : byte
{
/// <summary>
/// The server role is unknown.
/// </summary>
Unknown = 0,
/// <summary>
/// The server is the single server of a single-server environment.
/// </summary>
Single = 1,
/// <summary>
/// In a multi-servers environment, the server is a replica server.
/// </summary>
Replica = 2,
/// <summary>
/// In a multi-servers environment, the server is the master server.
/// </summary>
Master = 3
}
}