Skip to content

Commit 24d96a0

Browse files
author
Raul Hidalgo Caballero
committed
regions
1 parent 969173c commit 24d96a0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/GraphQL.Common/Response/GraphQLLocation.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)