You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
608 B
21 lines
608 B
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.ExternalId == y.ExternalId && |
|
x.Permissions == y.Permissions; |
|
} |
|
|
|
public int GetHashCode([DisallowNull] OrganizationUser obj) |
|
{ |
|
return base.GetHashCode(); |
|
} |
|
}
|
|
|