public override int GetHashCode()
        {
            int hash = 1;

            if (JWToken.Length != 0)
            {
                hash ^= JWToken.GetHashCode();
            }
            if (CrudAction != 0)
            {
                hash ^= CrudAction.GetHashCode();
            }
            if (roomType_ != null)
            {
                hash ^= RoomType.GetHashCode();
            }
            return(hash);
        }
        public override int GetHashCode()
        {
            int hash = 1;

            if (JWToken.Length != 0)
            {
                hash ^= JWToken.GetHashCode();
            }
            if (CrudAction != 0)
            {
                hash ^= CrudAction.GetHashCode();
            }
            if (before_ != null)
            {
                hash ^= Before.GetHashCode();
            }
            if (after_ != null)
            {
                hash ^= After.GetHashCode();
            }
            return(hash);
        }