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

11 lines
275 B
C#

namespace Umbraco.Core.Models.EntityBase
{
/// <summary>
/// Marker interface for value object, eg. objects without
/// the same kind of identity as an Entity (with its Id).
/// </summary>
public interface IValueObject
{
}
}