7 lines
117 B
TypeScript
7 lines
117 B
TypeScript
export interface RemoteServer {
|
|
id: string;
|
|
name: string;
|
|
url: string;
|
|
isSelf: boolean;
|
|
isDead: boolean;
|
|
}
|