12 lines
255 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|