using System; using Umbraco.Core.Models.Entities; using Umbraco.Core.Sync; namespace Umbraco.Core.Models { public interface IServerRegistration : IServerAddress, IEntity, IRememberBeingDirty { /// /// Gets or sets the server unique identity. /// string ServerIdentity { get; set; } new string ServerAddress { get; set; } /// /// Gets or sets a value indicating whether the server is active. /// bool IsActive { get; set; } /// /// Gets or sets a value indicating whether the server is master. /// bool IsMaster { get; set; } /// /// Gets the date and time the registration was created. /// DateTime Registered { get; set; } /// /// Gets the date and time the registration was last accessed. /// DateTime Accessed { get; set; } } }