Skip to content

Commit 7da7032

Browse files
committed
Improved comments and made them proper xmldocs
1 parent 3ddcd23 commit 7da7032

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/Nest/Domain/ICustomJson.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22

33
namespace Nest
44
{
5-
// If an object implements this then it can handle its own json representation
5+
/// <summary>
6+
/// If an object implements this then it can handle its own json representation
7+
/// </summary>
68
public interface ICustomJson
79
{
810
object GetCustomJson();
911
}
1012

11-
// Any object that implements this will automatically be added to the serialization contract
13+
/// <summary>
14+
/// Any object that implements this interface will automatically have all
15+
/// JsonProperties of all of its implementing interfaces discovered.
16+
/// </summary>
1217
public interface INestSerializable { }
1318
}

0 commit comments

Comments
 (0)