mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
8 lines
227 B
JavaScript
8 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;
|
|
}
|