RuneHive-Game
Loading...
Searching...
No Matches
ServiceRequest.java
Go to the documentation of this file.
1package dev.advo.fs.net.service;
2
3public final class ServiceRequest {
4
5 private final int id;
6
7 public ServiceRequest(int id) {
8 this.id = id;
9 }
10
11 public boolean invalid() {
12 return id != 0;
13 }
14}