10 lines
151 B
C#
10 lines
151 B
C#
using System;
|
|
|
|
namespace Umbraco.Tests.Shared.Builders.Interfaces
|
|
{
|
|
public interface IWithKeyBuilder
|
|
{
|
|
Guid? Key { get; set; }
|
|
}
|
|
}
|