mirror of
https://github.com/bitwarden/server.git
synced 2025-07-15 14:47:45 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit239286737d
. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a
.
24 lines
716 B
C#
24 lines
716 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Infrastructure.EFIntegration.Test.Repositories.EqualityComparers
|
|
{
|
|
public class OrganizationUserCompare : IEqualityComparer<OrganizationUser>
|
|
{
|
|
public bool Equals(OrganizationUser x, OrganizationUser y)
|
|
{
|
|
return x.Email == y.Email &&
|
|
x.Status == y.Status &&
|
|
x.Type == y.Type &&
|
|
x.AccessAll == y.AccessAll &&
|
|
x.ExternalId == y.ExternalId &&
|
|
x.Permissions == y.Permissions;
|
|
}
|
|
|
|
public int GetHashCode([DisallowNull] OrganizationUser obj)
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
}
|
|
}
|