11 lines
275 B
C#
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
|
|
{
|
|
|
|
}
|
|
} |