1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/app/frontend/src/javascript/models/history-value.ts

10 lines
131 B
TypeScript

export interface HistoryValue {
id: number,
value: string,
created_at: Date
user: {
id: number,
name: string
}
}