8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
export interface VerifyServer {
|
|
name: string;
|
|
ipAddress: string;
|
|
stationCode: string;
|
|
verifyUrl: string;
|
|
onlineState: boolean;
|
|
}
|