Files
SimpleCloudNotifier/webapp/src/app/core/models/sender-name.model.ts

11 lines
213 B
TypeScript

export interface SenderNameStatistics {
name: string;
first_timestamp: string;
last_timestamp: string;
count: number;
}
export interface SenderNameListResponse {
sender_names: SenderNameStatistics[];
}