mirror of
https://github.com/portainer/portainer.git
synced 2025-07-30 02:39:41 +02:00
* refactor(app): move storidge to new 'integrations' module * style(storidge): revert TODO note removal
6 lines
163 B
JavaScript
6 lines
163 B
JavaScript
export function StoridgeEventModel(data) {
|
|
this.Time = data.time;
|
|
this.Category = data.category;
|
|
this.Module = data.module;
|
|
this.Content = data.content;
|
|
}
|