syntax = "proto3";
package POGOProtos.Networking.Responses.Social;

message RemoveFriendResponse {
	Result result = 1;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_PLAYER_DOES_NOT_EXIST_DELETED = 2;
		ERROR_PLAYER_NOT_A_FRIEND = 3;
	}
}
