public bool Equals()

in src/Covi/Features/UserProfile/Components/UserStatusCard/UserStatusCardViewModel.cs [93:100]


            public bool Equals(UserState x, UserState y)
            {
                if (x == null && y == null)
                    return true;
                else if (x == null || y == null)
                    return false;
                return x.StatusId == y.StatusId;
            }