mirror of
https://github.com/bitwarden/server
synced 2025-12-13 06:43:45 +00:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
21 lines
544 B
C#
21 lines
544 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Infrastructure.EFIntegration.Test.Repositories.EqualityComparers
|
|
{
|
|
public class InstallationCompare : IEqualityComparer<Installation>
|
|
{
|
|
public bool Equals(Installation x, Installation y)
|
|
{
|
|
return x.Email == y.Email &&
|
|
x.Key == y.Key &&
|
|
x.Enabled == y.Enabled;
|
|
}
|
|
|
|
public int GetHashCode([DisallowNull] Installation obj)
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
}
|
|
}
|