File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/GraphQL.Common/Response Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ namespace GraphQL.Common.Response {
77 /// </summary>
88 public class GraphQLLocation : IEquatable < GraphQLLocation > {
99
10+ #region Properties
11+
1012 /// <summary>
1113 /// The Column
1214 /// </summary>
@@ -17,6 +19,10 @@ public class GraphQLLocation : IEquatable<GraphQLLocation> {
1719 /// </summary>
1820 public uint Line { get ; set ; }
1921
22+ #endregion
23+
24+ #region IEquatable
25+
2026 /// <summary>
2127 /// Returns the hash code for this instance.
2228 /// </summary>
@@ -62,6 +68,8 @@ public bool Equals(GraphQLLocation other) =>
6268 public static bool operator != ( GraphQLLocation left , GraphQLLocation right ) =>
6369 ! left . Equals ( right ) ;
6470
71+ #endregion
72+
6573 }
6674
6775}
You can’t perform that action at this time.
0 commit comments