mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
export class AnnotationEvent {
|
|
dashboardId: number;
|
|
panelId: number;
|
|
userId: number;
|
|
time: any;
|
|
timeEnd: any;
|
|
isRegion: boolean;
|
|
text: string;
|
|
type: string;
|
|
tags: string;
|
|
}
|