Skip to content

Commit

Permalink
regions
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Hidalgo Caballero committed Feb 7, 2018
1 parent 969173c commit 24d96a0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/GraphQL.Common/Response/GraphQLLocation.cs
Expand Up @@ -7,6 +7,8 @@ namespace GraphQL.Common.Response {
/// </summary>
public class GraphQLLocation : IEquatable<GraphQLLocation> {

#region Properties

/// <summary>
/// The Column
/// </summary>
Expand All @@ -17,6 +19,10 @@ public class GraphQLLocation : IEquatable<GraphQLLocation> {
/// </summary>
public uint Line { get; set; }

#endregion

#region IEquatable

/// <summary>
/// Returns the hash code for this instance.
/// </summary>
Expand Down Expand Up @@ -62,6 +68,8 @@ public class GraphQLLocation : IEquatable<GraphQLLocation> {
public static bool operator !=(GraphQLLocation left, GraphQLLocation right) =>
!left.Equals(right);

#endregion

}

}

0 comments on commit 24d96a0

Please sign in to comment.