mirror of
https://github.com/portainer/portainer.git
synced 2025-07-29 02:09:41 +02:00
10 lines
263 B
JavaScript
10 lines
263 B
JavaScript
|
export function StoridgeSnapshotModel(data) {
|
||
|
this.Id = data.identifier;
|
||
|
this.Date = data.date;
|
||
|
this.Description = data.description;
|
||
|
this.SourceID = data.sourceid;
|
||
|
this.Type = data.type;
|
||
|
this.Directory = data.directory;
|
||
|
this.Source = data.source;
|
||
|
}
|