chore: suppress NonReadonlyMemberInGetHashCode

This commit is contained in:
Oliver Booth 2023-08-08 12:47:05 +01:00
parent 2ef1e47ece
commit 50a25dad6f
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ public sealed class BlogPost : IEquatable<BlogPost>
}
public override int GetHashCode()
{
// ReSharper disable once NonReadonlyMemberInGetHashCode
return Id;
}
}