Index: Ringtoets/Common/src/Ringtoets.Common.Data/Comment.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -r7ccd8feadb7362bad296fb6864c55d8cfa0992ad
--- Ringtoets/Common/src/Ringtoets.Common.Data/Comment.cs (.../Comment.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Comment.cs (.../Comment.cs) (revision 7ccd8feadb7362bad296fb6864c55d8cfa0992ad)
@@ -19,16 +19,23 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using System;
+
namespace Ringtoets.Common.Data
{
///
/// This class represents a comment on some subject.
///
- public class Comment
+ public class Comment : ICloneable
{
///
/// Gets or sets the comment body.
///
public string Body { get; set; }
+
+ public object Clone()
+ {
+ return MemberwiseClone();
+ }
}
}
\ No newline at end of file