11 lines
133 B
TypeScript
11 lines
133 B
TypeScript
|
|
export interface MetaProbeStatus {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
export enum MetaProbeStatus_ID {
|
|
INITIAL = 1,
|
|
NORMAL = 2,
|
|
}
|