10 lines
141 B
C#
10 lines
141 B
C#
using System;
|
|
|
|
namespace Umbraco.Core.Scoping
|
|
{
|
|
public interface IInstanceIdentifiable
|
|
{
|
|
Guid InstanceId { get; }
|
|
}
|
|
}
|