1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-01 20:05:23 +02:00
portainer/app/extensions/storidge/models/events.js
2018-01-21 17:26:24 +01:00

6 lines
156 B
JavaScript

function StoridgeEventModel(data) {
this.Time = data.time;
this.Category = data.category;
this.Module = data.module;
this.Content = data.content;
}