mirror of https://github.com/portainer/portainer
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
|
function SecretViewModel(data) {
|
||
|
this.Id = data.ID;
|
||
|
this.CreatedAt = data.CreatedAt;
|
||
|
this.UpdatedAt = data.UpdatedAt;
|
||
|
this.Version = data.Version.Index;
|
||
|
this.Name = data.Spec.Name;
|
||
|
this.Labels = data.Spec.Labels;
|
||
|
}
|