Files
Umbraco-CMS/src/Umbraco.Core/Models/EntityBase/IAggreateRoot.cs
2012-10-03 06:38:31 -02:00

10 lines
205 B
C#

namespace Umbraco.Core.Models.EntityBase
{
/// <summary>
/// Marker interface for aggregate roots
/// </summary>
public interface IAggreateRoot : IEntity
{
}
}