style: order members alphabetically

This commit is contained in:
Oliver Booth 2023-08-08 12:46:52 +01:00
parent aaafcaf760
commit 2ef1e47ece
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
1 changed files with 4 additions and 5 deletions

View File

@ -103,11 +103,6 @@ public sealed class BlogPost : IEquatable<BlogPost>
return ReferenceEquals(this, obj) || obj is BlogPost other && Equals(other);
}
public override int GetHashCode()
{
return Id;
}
/// <summary>
/// Gets the Disqus identifier for the blog post.
/// </summary>
@ -140,4 +135,8 @@ public sealed class BlogPost : IEquatable<BlogPost>
return $"{GetDisqusDomain()}/{path}";
}
public override int GetHashCode()
{
return Id;
}
}