Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Standard/IClonable.cs =================================================================== diff -u -r3893 -r4052 --- DamEngine/trunk/src/Deltares.DamEngine.Data/Standard/IClonable.cs (.../IClonable.cs) (revision 3893) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/Standard/IClonable.cs (.../IClonable.cs) (revision 4052) @@ -21,15 +21,14 @@ using System.Runtime.InteropServices; -namespace Deltares.DamEngine.Data.Standard +namespace Deltares.DamEngine.Data.Standard; + +[ComVisible(true)] +public interface ICloneable { - [ComVisible(true)] - public interface ICloneable - { - /// - /// Clones the current object. - /// - /// A clone of the current object. - T Clone(); - } + /// + /// Clones the current object. + /// + /// A clone of the current object. + T Clone(); } \ No newline at end of file