add server ids

This commit is contained in:
Lee
2024-01-01 04:11:22 +00:00
parent 3f3088f017
commit 3750a00017
4 changed files with 73 additions and 56 deletions

View File

@ -24,6 +24,7 @@ export type PingResponse = {
};
type ServerOptions = {
id: number;
name: string;
ip: string;
type: ServerType;
@ -35,6 +36,11 @@ type DnsInfo = {
};
export default class Server {
/**
* The ID of the server.
*/
private id: number;
/**
* The name of the server.
*/
@ -58,7 +64,8 @@ export default class Server {
hasResolved: false,
};
constructor({ name, ip, type }: ServerOptions) {
constructor({ id, name, ip, type }: ServerOptions) {
this.id = id;
this.name = name;
this.ip = ip;
this.type = type;
@ -152,6 +159,15 @@ export default class Server {
return undefined;
}
/**
* Returns the ID of the server.
*
* @returns the ID
*/
public getID(): number {
return this.id;
}
/**
* Returns the name of the server.
*