Files
Umbraco-CMS/tests/Umbraco.Tests.Common/Builders/Interfaces/IWithKeyBuilder.cs

13 lines
215 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System;
namespace Umbraco.Cms.Tests.Common.Builders.Interfaces
{
public interface IWithKeyBuilder
{
Guid? Key { get; set; }
}
}