2018-01-10 12:48:51 +01:00
|
|
|
|
namespace Umbraco.Core.Models
|
2014-02-20 22:34:54 +11:00
|
|
|
|
{
|
2018-01-10 12:48:51 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Provides a mean to deep-clone an object.
|
|
|
|
|
|
/// </summary>
|
2014-02-20 22:34:54 +11:00
|
|
|
|
public interface IDeepCloneable
|
|
|
|
|
|
{
|
2014-04-15 13:52:49 +10:00
|
|
|
|
object DeepClone();
|
2014-02-20 22:34:54 +11:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|