Files
Umbraco-CMS/src/Umbraco.Core/Models/Entities/IValueObject.cs

12 lines
255 B
C#

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