17 lines
357 B
C#
17 lines
357 B
C#
using System;
|
|
|
|
namespace Umbraco.Cms.Core.Scoping
|
|
{
|
|
/// <summary>
|
|
/// Exposes an instance unique identifier.
|
|
/// </summary>
|
|
public interface IInstanceIdentifiable
|
|
{
|
|
/// <summary>
|
|
/// Gets the instance unique identifier.
|
|
/// </summary>
|
|
Guid InstanceId { get; }
|
|
int CreatedThreadId { get; }
|
|
}
|
|
}
|