namespace Umbraco.Cms.Core.Scoping; /// /// Exposes an instance unique identifier. /// public interface IInstanceIdentifiable { /// /// Gets the instance unique identifier. /// Guid InstanceId { get; } int CreatedThreadId { get; } }